MediaWiki  REL1_19
LanguageFrTest.php
Go to the documentation of this file.
00001 <?php
00009 class LanguageFrTest extends MediaWikiTestCase {
00010         private $lang;
00011 
00012         function setUp() {
00013                 $this->lang = Language::factory( 'fr' );
00014         }
00015         function tearDown() {
00016                 unset( $this->lang );
00017         }
00018 
00020         function testPlural( $result, $value ) {
00021                 $forms =  array( 'one', 'other' );
00022                 $this->assertEquals( $result, $this->lang->convertPlural( $value, $forms ) );
00023         }
00024 
00025         function providePlural() {
00026                 return array (
00027                         array( 'one', 0 ),
00028                         array( 'one', 1 ),
00029                         array( 'other', 2 ),
00030                         array( 'other', 200 ),
00031                 );
00032         }
00033 
00034 }