diff options
Diffstat (limited to 'tests/UnitTests/framework/common.php')
-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();
|