[MCR] pass $queryFlags into RevisionStore::getTitle
[lhc/web/wiklou.git] / tests / phpunit / languages / classes / LanguageIuTest.php
1 <?php
2
3 class LanguageIuTest extends LanguageClassesTestCase {
4 /**
5 * @dataProvider provideAutoConvertToAllVariants
6 * @covers Language::autoConvertToAllVariants
7 */
8 public function testAutoConvertToAllVariants( $result, $value ) {
9 $this->assertEquals( $result, $this->getLang()->autoConvertToAllVariants( $value ) );
10 }
11
12 public static function provideAutoConvertToAllVariants() {
13 return [
14 // ike-cans
15 [
16 [
17 'ike-cans' => 'ᐴ',
18 'ike-latn' => 'PUU',
19 'iu' => 'PUU',
20 ],
21 'PUU'
22 ],
23 // ike-latn
24 [
25 [
26 'ike-cans' => 'ᐴ',
27 'ike-latn' => 'puu',
28 'iu' => 'ᐴ',
29 ],
30 'ᐴ'
31 ],
32 ];
33 }
34 }