Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Notes: * Disabled CallTimePassByReference due to false positives (T127163) Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
34 lines
651 B
PHP
34 lines
651 B
PHP
<?php
|
|
|
|
class LanguageIuTest extends LanguageClassesTestCase {
|
|
/**
|
|
* @dataProvider provideAutoConvertToAllVariants
|
|
* @covers Language::autoConvertToAllVariants
|
|
*/
|
|
public function testAutoConvertToAllVariants( $result, $value ) {
|
|
$this->assertEquals( $result, $this->getLang()->autoConvertToAllVariants( $value ) );
|
|
}
|
|
|
|
public static function provideAutoConvertToAllVariants() {
|
|
return [
|
|
// ike-cans
|
|
[
|
|
[
|
|
'ike-cans' => 'ᐴ',
|
|
'ike-latn' => 'PUU',
|
|
'iu' => 'PUU',
|
|
],
|
|
'PUU'
|
|
],
|
|
// ike-latn
|
|
[
|
|
[
|
|
'ike-cans' => 'ᐴ',
|
|
'ike-latn' => 'puu',
|
|
'iu' => 'ᐴ',
|
|
],
|
|
'ᐴ'
|
|
],
|
|
];
|
|
}
|
|
}
|