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