MediaWiki  REL1_19
LanguageHsbTest.php
Go to the documentation of this file.
00001 <?php
00009 class LanguageHsbTest extends MediaWikiTestCase {
00010         private $lang;
00011 
00012         function setUp() {
00013                 $this->lang = Language::factory( 'hsb' );
00014         }
00015         function tearDown() {
00016                 unset( $this->lang );
00017         }
00018 
00020         function testPlural( $result, $value ) {
00021                 $forms =  array( 'one', 'two', 'few', 'other' );
00022                 $this->assertEquals( $result, $this->lang->convertPlural( $value, $forms ) );
00023         }
00024 
00025         function providePlural() {
00026                 return array (
00027                         array( 'other', 0 ),
00028                         array( 'one', 1 ),
00029                         array( 'one', 101 ),
00030                         array( 'one', 90001 ),
00031                         array( 'two', 2 ),
00032                         array( 'few', 3 ),
00033                         array( 'few', 203 ),
00034                         array( 'few', 4 ),
00035                         array( 'other', 99 ),
00036                         array( 'other', 555 ),
00037                 );
00038         }
00039 
00040 }