summaryrefslogtreecommitdiff
path: root/tests/phpunit/languages/LanguageLtTest.php
blob: 9d6428b8263c1e13a51a0a182f327506a9aca4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
 * @author Santhosh Thottingal
 * @copyright Copyright © 2012, Santhosh Thottingal
 * @file
 */

/** Tests for MediaWiki languages/LanguageLt.php */
class LanguageLtTest extends LanguageClassesTestCase {

	/** @dataProvider provideOneFewOtherCases */
	function testOneFewOtherPlural( $result, $value ) {
		$forms = array( 'one', 'few', 'other' );
		$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
	}

	/** @dataProvider provideOneFewCases */
	function testOneFewPlural( $result, $value ) {
		$forms = array( 'one', 'few' );
		$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
	}

	function provideOneFewOtherCases() {
		return array(
			array( 'other', 0 ),
			array( 'one', 1 ),
			array( 'few', 2 ),
			array( 'few', 9 ),
			array( 'other', 10 ),
			array( 'other', 11 ),
			array( 'other', 20 ),
			array( 'one', 21 ),
			array( 'few', 32 ),
			array( 'one', 41 ),
			array( 'one', 40001 ),
		);
	}

	function provideOneFewCases() {
		return array(
			array( 'one', 1 ),
			array( 'few', 15 ),
		);
	}
}