change references from Support to Date_Parser
authorChuck Hagenbuch <chuck@horde.org>
Mon, 3 Nov 2008 19:28:37 +0000 (14:28 -0500)
committerChuck Hagenbuch <chuck@horde.org>
Mon, 3 Nov 2008 19:28:37 +0000 (14:28 -0500)
framework/Horde_Date_Parser/test/Horde/Date/Parser/AllTests.php

index 7fac8b1..53d8bde 100644 (file)
@@ -1,20 +1,20 @@
 <?php
 /**
  * @category   Horde
- * @package    Support
+ * @package    Date_Parser
  * @subpackage UnitTests
  * @copyright  2008 The Horde Project (http://www.horde.org/)
  * @license    http://opensource.org/licenses/bsd-license.php
  */
 
 if (!defined('PHPUnit_MAIN_METHOD')) {
-    define('PHPUnit_MAIN_METHOD', 'Horde_Support_AllTests::main');
+    define('PHPUnit_MAIN_METHOD', 'Horde_Date_Parser_AllTests::main');
 }
 
 require_once 'PHPUnit/Framework/TestSuite.php';
 require_once 'PHPUnit/TextUI/TestRunner.php';
 
-class Horde_Support_AllTests {
+class Horde_Date_Parser_AllTests {
 
     public static function main()
     {
@@ -28,7 +28,7 @@ class Horde_Support_AllTests {
             spl_autoload_register(create_function('$class', '$filename = str_replace(array(\'::\', \'_\'), \'/\', $class); include "$filename.php";'));
         }
 
-        $suite = new PHPUnit_Framework_TestSuite('Horde Framework - Horde_Support');
+        $suite = new PHPUnit_Framework_TestSuite('Horde Framework - Horde_Date_Parser');
 
         $basedir = dirname(__FILE__);
         $baseregexp = preg_quote($basedir . DIRECTORY_SEPARATOR, '/');
@@ -40,7 +40,7 @@ class Horde_Support_AllTests {
 
                 $class = str_replace(DIRECTORY_SEPARATOR, '_',
                                      preg_replace("/^$baseregexp(.*)\.php/", '\\1', $pathname));
-                $suite->addTestSuite('Horde_Support_' . $class);
+                $suite->addTestSuite('Horde_Date_Parser_' . $class);
             }
         }
 
@@ -49,6 +49,6 @@ class Horde_Support_AllTests {
 
 }
 
-if (PHPUnit_MAIN_METHOD == 'Horde_Support_AllTests::main') {
-    Horde_Support_AllTests::main();
+if (PHPUnit_MAIN_METHOD == 'Horde_Date_Parser_AllTests::main') {
+    Horde_Date_Parser_AllTests::main();
 }