diff options
author | wei <> | 2006-06-12 03:10:47 +0000 |
---|---|---|
committer | wei <> | 2006-06-12 03:10:47 +0000 |
commit | 1c6f1f79d011579a158e87459040075331b636b7 (patch) | |
tree | 75236e04a5e2aaf9685b34ed7bed0f82e591bbb4 /tests/UnitTests/framework | |
parent | f30c38fcc9d6cdfa7aafa5078a58645192c11974 (diff) |
Minor updates.
Diffstat (limited to 'tests/UnitTests/framework')
-rw-r--r-- | tests/UnitTests/framework/common.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/UnitTests/framework/common.php b/tests/UnitTests/framework/common.php index 7df61c99..059dd142 100644 --- a/tests/UnitTests/framework/common.php +++ b/tests/UnitTests/framework/common.php @@ -10,18 +10,10 @@ require_once(SIMPLETEST_DIR.'/mock_objects.php'); require_once(SIMPLETEST_DIR.'/reporter.php');
require_once(SIMPLETEST_DIR.'/HtmlReporterWithCoverage.php');
-require_once(FRAMEWORK_DIR.'/PradoBase.php');
+require_once(FRAMEWORK_DIR.'/prado.php');
set_include_path(get_include_path().";".FRAMEWORK_DIR);
-class Prado extends PradoBase
-{
-}
-
-function __autoload($className)
-{
- require_once($className.Prado::CLASS_FILE_EXT);
-}
error_reporting(E_ALL);
restore_error_handler();
|