MediaWiki  REL1_24
LanguageArqTest.php
Go to the documentation of this file.
00001 <?php
00010 class LanguageArqTest extends LanguageClassesTestCase {
00015     public function testFormatNum( $result, $value ) {
00016         $this->assertEquals( $result, $this->getLang()->formatNum( $value ) );
00017     }
00018 
00019     public static function provideNumber() {
00020         return array(
00021             array( '1.234.567', '1234567'),
00022             array( '-12,89', -12.89 ),
00023             );
00024     }
00025 
00026 }