MediaWiki REL1_30
LanguageIuTest.php
Go to the documentation of this file.
1<?php
2
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}
Helping class to run tests using a clean language instance.
static provideAutoConvertToAllVariants()
testAutoConvertToAllVariants( $result, $value)
provideAutoConvertToAllVariants Language::autoConvertToAllVariants