wiki.techinc.nl/tests/phpunit/languages/LanguageSmaTest.php

45 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/**
* @author Amir E. Aharoni
* @copyright Copyright © 2012, Amir E. Aharoni
* @file
*/
/** Tests for MediaWiki languages/classes/LanguageSma.php */
class LanguageSmaTest extends LanguageClassesTestCase {
/** @dataProvider providePlural */
function testPlural( $result, $value ) {
$forms = array( 'one', 'two', 'other' );
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
}
/** @dataProvider providePlural */
function testGetPluralRuleType( $result, $value ) {
$this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
}
function providePlural() {
return array (
array( 'other', 0 ),
array( 'one', 1 ),
array( 'two', 2 ),
array( 'other', 3 ),
);
}
/** @dataProvider providerPluralTwoForms */
function testPluralTwoForms( $result, $value ) {
$forms = array( 'one', 'other' );
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
}
function providerPluralTwoForms() {
return array (
array( 'other', 0 ),
array( 'one', 1 ),
array( 'other', 2 ),
array( 'other', 3 ),
);
}
}