MediaWiki REL1_31
LanguageMtTest.php
Go to the documentation of this file.
1<?php
14 public function testPlural( $result, $value ) {
15 $forms = [ 'one', 'few', 'many', 'other' ];
16 $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
17 }
18
23 public function testGetPluralRuleType( $result, $value ) {
24 $this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
25 }
26
27 public static function providePlural() {
28 return [
29 [ 'few', 0 ],
30 [ 'one', 1 ],
31 [ 'few', 2 ],
32 [ 'few', 10 ],
33 [ 'many', 11 ],
34 [ 'many', 19 ],
35 [ 'other', 20 ],
36 [ 'other', 99 ],
37 [ 'other', 100 ],
38 [ 'other', 101 ],
39 [ 'few', 102 ],
40 [ 'few', 110 ],
41 [ 'many', 111 ],
42 [ 'many', 119 ],
43 [ 'other', 120 ],
44 [ 'other', 201 ],
45 ];
46 }
47
52 public function testPluralTwoForms( $result, $value ) {
53 $forms = [ 'one', 'other' ];
54 $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
55 }
56
57 public static function providePluralTwoForms() {
58 return [
59 [ 'other', 0 ],
60 [ 'one', 1 ],
61 [ 'other', 2 ],
62 [ 'other', 10 ],
63 [ 'other', 11 ],
64 [ 'other', 19 ],
65 [ 'other', 20 ],
66 [ 'other', 99 ],
67 [ 'other', 100 ],
68 [ 'other', 101 ],
69 [ 'other', 102 ],
70 [ 'other', 110 ],
71 [ 'other', 111 ],
72 [ 'other', 119 ],
73 [ 'other', 120 ],
74 [ 'other', 201 ],
75 ];
76 }
77}
Helping class to run tests using a clean language instance.
Tests for MediaWiki languages/classes/LanguageMt.php.
testGetPluralRuleType( $result, $value)
providePlural Language::getPluralRuleType
static providePlural()
testPlural( $result, $value)
providePlural Language::convertPlural
testPluralTwoForms( $result, $value)
providePluralTwoForms Language::convertPlural
static providePluralTwoForms()