X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=tests%2Fphpunit%2Flanguages%2Fclasses%2FLanguageUkTest.php;h=0ccebbe2bea371072ef80c3feffd6ca749e3821e;hp=5912df68a345b5231dfec9a7e9f56b9a0fb61474;hb=827c6bfa416d9d0de8cc8e22f9f3fa36d8129d44;hpb=9dfb45cc7c6ab53b55a484233795e7451cbee680 diff --git a/tests/phpunit/languages/classes/LanguageUkTest.php b/tests/phpunit/languages/classes/LanguageUkTest.php index 5912df68a3..0ccebbe2be 100644 --- a/tests/phpunit/languages/classes/LanguageUkTest.php +++ b/tests/phpunit/languages/classes/LanguageUkTest.php @@ -6,14 +6,13 @@ * @file */ -/** Tests for Ukrainian */ class LanguageUkTest extends LanguageClassesTestCase { /** * @dataProvider providePlural * @covers Language::convertPlural */ public function testPlural( $result, $value ) { - $forms = array( 'one', 'few', 'many', 'other' ); + $forms = [ 'one', 'few', 'many', 'other' ]; $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) ); } @@ -22,9 +21,9 @@ class LanguageUkTest extends LanguageClassesTestCase { * @covers Language::convertPlural */ public function testExplicitPlural() { - $forms = array( 'one', 'few', 'many', 'other', '12=dozen' ); + $forms = [ 'one', 'few', 'many', 'other', '12=dozen' ]; $this->assertEquals( 'dozen', $this->getLang()->convertPlural( 12, $forms ) ); - $forms = array( 'one', 'few', 'many', '100=hundred', 'other', '12=dozen' ); + $forms = [ 'one', 'few', 'many', '100=hundred', 'other', '12=dozen' ]; $this->assertEquals( 'hundred', $this->getLang()->convertPlural( 100, $forms ) ); } @@ -37,19 +36,19 @@ class LanguageUkTest extends LanguageClassesTestCase { } public static function providePlural() { - return array( - array( 'one', 1 ), - array( 'many', 11 ), - array( 'one', 91 ), - array( 'one', 121 ), - array( 'few', 2 ), - array( 'few', 3 ), - array( 'few', 4 ), - array( 'few', 334 ), - array( 'many', 5 ), - array( 'many', 15 ), - array( 'many', 120 ), - ); + return [ + [ 'one', 1 ], + [ 'many', 11 ], + [ 'one', 91 ], + [ 'one', 121 ], + [ 'few', 2 ], + [ 'few', 3 ], + [ 'few', 4 ], + [ 'few', 334 ], + [ 'many', 5 ], + [ 'many', 15 ], + [ 'many', 120 ], + ]; } /** @@ -57,17 +56,17 @@ class LanguageUkTest extends LanguageClassesTestCase { * @covers Language::convertPlural */ public function testPluralTwoForms( $result, $value ) { - $forms = array( '1=one', 'other' ); + $forms = [ '1=one', 'other' ]; $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) ); } public static function providePluralTwoForms() { - return array( - array( 'one', 1 ), - array( 'other', 11 ), - array( 'other', 91 ), - array( 'other', 121 ), - ); + return [ + [ 'one', 1 ], + [ 'other', 11 ], + [ 'other', 91 ], + [ 'other', 121 ], + ]; } /** @@ -79,32 +78,32 @@ class LanguageUkTest extends LanguageClassesTestCase { } public static function providerGrammar() { - return array( - array( + return [ + [ 'Вікіпедії', 'Вікіпедія', 'genitive', - ), - array( + ], + [ 'Віківидів', 'Віківиди', 'genitive', - ), - array( + ], + [ 'Вікіцитат', 'Вікіцитати', 'genitive', - ), - array( + ], + [ 'Вікіпідручника', 'Вікіпідручник', 'genitive', - ), - array( + ], + [ 'Вікіпедію', 'Вікіпедія', 'accusative', - ), - ); + ], + ]; } }