summaryrefslogtreecommitdiff
path: root/tests/phpunit/languages/LanguageNlTest.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2014-03-12 18:12:23 +0100
committerPierre Schmitz <pierre@archlinux.de>2014-03-12 18:12:23 +0100
commitd417de70fcf39e0a7a15ba780b597914d16ca0f7 (patch)
tree06ef8c333473660350b995abc03e18f3f85359eb /tests/phpunit/languages/LanguageNlTest.php
parenta4edbfa031eb4cd72678051f1510afde4f77951e (diff)
Update to MediaWiki 1.22.4
Diffstat (limited to 'tests/phpunit/languages/LanguageNlTest.php')
-rw-r--r--tests/phpunit/languages/LanguageNlTest.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/phpunit/languages/LanguageNlTest.php b/tests/phpunit/languages/LanguageNlTest.php
deleted file mode 100644
index 26bd691a..00000000
--- a/tests/phpunit/languages/LanguageNlTest.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/**
- * @author Santhosh Thottingal
- * @copyright Copyright © 2011, Santhosh Thottingal
- * @file
- */
-
-/** Tests for MediaWiki languages/LanguageNl.php */
-class LanguageNlTest extends LanguageClassesTestCase {
-
- /**
- * @covers Language::formatNum
- * @todo split into a test and a dataprovider
- */
- public function testFormatNum() {
- $this->assertEquals( '1.234.567', $this->getLang()->formatNum( '1234567' ) );
- $this->assertEquals( '12.345', $this->getLang()->formatNum( '12345' ) );
- $this->assertEquals( '1', $this->getLang()->formatNum( '1' ) );
- $this->assertEquals( '123', $this->getLang()->formatNum( '123' ) );
- $this->assertEquals( '1.234', $this->getLang()->formatNum( '1234' ) );
- $this->assertEquals( '12.345,56', $this->getLang()->formatNum( '12345.56' ) );
- $this->assertEquals( ',1234556', $this->getLang()->formatNum( '.1234556' ) );
- }
-}