wiki.techinc.nl/tests/phpunit/languages/LanguageBe_taraskTest.php

31 lines
786 B
PHP
Raw Normal View History

<?php
class LanguageBeTaraskTest extends MediaWikiTestCase {
private $lang;
function setUp() {
$this->lang = Language::factory( 'Be-tarask' );
}
function tearDown() {
unset( $this->lang );
}
/** see bug 23156 & r64981 */
function testSearchRightSingleQuotationMarkAsApostroph() {
$this->assertEquals(
"'",
$this->lang->normalizeForSearch( '' ),
'bug 23156: U+2019 conversion to U+0027'
);
}
/** see bug 23156 & r64981 */
function testCommafy() {
$this->assertEquals( '1,234,567', $this->lang->commafy( '1234567' ) );
$this->assertEquals( '12,345', $this->lang->commafy( '12345' ) );
}
/** see bug 23156 & r64981 */
function testDoesNotCommafyFourDigitsNumber() {
$this->assertEquals( '1234', $this->lang->commafy( '1234' ) );
}
}