diff options
Diffstat (limited to 'tests/phpunit/languages/LanguageHyTest.php')
-rw-r--r-- | tests/phpunit/languages/LanguageHyTest.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/phpunit/languages/LanguageHyTest.php b/tests/phpunit/languages/LanguageHyTest.php new file mode 100644 index 00000000..7088d37b --- /dev/null +++ b/tests/phpunit/languages/LanguageHyTest.php @@ -0,0 +1,26 @@ +<?php +/** + * @author Santhosh Thottingal + * @copyright Copyright © 2012, Santhosh Thottingal + * @file + */ + +/** Tests for MediaWiki languages/LanguageHy.php */ +class LanguageHyTest extends LanguageClassesTestCase { + + /** @dataProvider providerPlural */ + function testPlural( $result, $value ) { + $forms = array( 'one', 'other' ); + $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) ); + } + + function providerPlural() { + return array( + array( 'other', 0 ), + array( 'one', 1 ), + array( 'other', 2 ), + array( 'other', 200 ), + ); + } + +} |