summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/languages/classes/LanguageMgTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/tests/phpunit/languages/classes/LanguageMgTest.php')
-rw-r--r--www/wiki/tests/phpunit/languages/classes/LanguageMgTest.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/www/wiki/tests/phpunit/languages/classes/LanguageMgTest.php b/www/wiki/tests/phpunit/languages/classes/LanguageMgTest.php
new file mode 100644
index 00000000..7a84c071
--- /dev/null
+++ b/www/wiki/tests/phpunit/languages/classes/LanguageMgTest.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * @author Santhosh Thottingal
+ * @copyright Copyright © 2012, Santhosh Thottingal
+ * @file
+ */
+
+/** Tests for MediaWiki languages/classes/LanguageMg.php */
+class LanguageMgTest extends LanguageClassesTestCase {
+ /**
+ * @dataProvider providePlural
+ * @covers Language::convertPlural
+ */
+ public function testPlural( $result, $value ) {
+ $forms = [ 'one', 'other' ];
+ $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
+ }
+
+ /**
+ * @dataProvider providePlural
+ * @covers Language::getPluralRuleType
+ */
+ public function testGetPluralRuleType( $result, $value ) {
+ $this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
+ }
+
+ public static function providePlural() {
+ return [
+ [ 'one', 0 ],
+ [ 'one', 1 ],
+ [ 'other', 2 ],
+ [ 'other', 200 ],
+ [ 'other', 123.3434 ],
+ ];
+ }
+}