summaryrefslogtreecommitdiff
path: root/tests/unit/I18N/core/AllTests.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/I18N/core/AllTests.php')
-rw-r--r--tests/unit/I18N/core/AllTests.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/unit/I18N/core/AllTests.php b/tests/unit/I18N/core/AllTests.php
deleted file mode 100644
index bf5fb813..00000000
--- a/tests/unit/I18N/core/AllTests.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-
-if(!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'I18N_core_AllTests::main');
-}
-
-require_once 'CultureInfoTest.php';
-require_once 'DateFormatTest.php';
-require_once 'DateTimeFormatInfoTest.php';
-require_once 'NumberFormatInfoTest.php';
-require_once 'NumberFormatTest.php';
-
-class I18N_core_AllTests {
- public static function main() {
- PHPUnit_TextUI_TestRunner::run(self::suite());
- }
-
- public static function suite() {
- $suite = new PHPUnit_Framework_TestSuite('System.I18N.core');
-
- $suite->addTestSuite('CultureInfoTest');
- $suite->addTestSuite('DateFormatTest');
- $suite->addTestSuite('DateTimeFormatInfoTest');
- $suite->addTestSuite('NumberFormatInfoTest');
- $suite->addTestSuite('NumberFormatTest');
-
- return $suite;
- }
-}
-
-if(PHPUnit_MAIN_METHOD == 'I18N_core_AllTests::main') {
- I18N_core_AllTests::main();
-}