123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * @author Amir E. Aharoni
- * @copyright Copyright © 2012, Amir E. Aharoni
- * @file
- */
- /** Tests for MediaWiki languages/classes/LanguageSe.php */
- class LanguageSeTest extends LanguageClassesTestCase {
- /**
- * @dataProvider providePlural
- * @covers Language::convertPlural
- */
- public function testPlural( $result, $value ) {
- $forms = [ 'one', 'two', '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 [
- [ 'other', 0 ],
- [ 'one', 1 ],
- [ 'two', 2 ],
- [ 'other', 3 ],
- ];
- }
- /**
- * @dataProvider providePluralTwoForms
- * @covers Language::convertPlural
- */
- public function testPluralTwoForms( $result, $value ) {
- $forms = [ 'one', 'other' ];
- $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
- }
- public static function providePluralTwoForms() {
- return [
- [ 'other', 0 ],
- [ 'one', 1 ],
- [ 'other', 2 ],
- [ 'other', 3 ],
- ];
- }
- }
|