MediaWiki REL1_31
LanguageNlTest.php
Go to the documentation of this file.
1<?php
10
15 public function testFormatNum() {
16 $this->assertEquals( '1.234.567', $this->getLang()->formatNum( '1234567' ) );
17 $this->assertEquals( '12.345', $this->getLang()->formatNum( '12345' ) );
18 $this->assertEquals( '1', $this->getLang()->formatNum( '1' ) );
19 $this->assertEquals( '123', $this->getLang()->formatNum( '123' ) );
20 $this->assertEquals( '1.234', $this->getLang()->formatNum( '1234' ) );
21 $this->assertEquals( '12.345,56', $this->getLang()->formatNum( '12345.56' ) );
22 $this->assertEquals( ',1234556', $this->getLang()->formatNum( '.1234556' ) );
23 }
24}
Helping class to run tests using a clean language instance.
Tests for MediaWiki languages/LanguageNl.php.
testFormatNum()
Language::formatNum.