summaryrefslogtreecommitdiff
path: root/tests/phpunit/languages/LanguageNlTest.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-06-04 07:31:04 +0200
committerPierre Schmitz <pierre@archlinux.de>2015-06-04 07:58:39 +0200
commitf6d65e533c62f6deb21342d4901ece24497b433e (patch)
treef28adf0362d14bcd448f7b65a7aaf38650f923aa /tests/phpunit/languages/LanguageNlTest.php
parentc27b2e832fe25651ef2410fae85b41072aae7519 (diff)
Update to MediaWiki 1.25.1
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' ) );
- }
-}