diff options
author | Taufan Aditya <toopay@taufanaditya.com> | 2012-03-28 10:15:30 +0200 |
---|---|---|
committer | Taufan Aditya <toopay@taufanaditya.com> | 2012-03-28 10:15:30 +0200 |
commit | ca16c4ff1aa0cf5ebfbe877e9be755c0b7d2061c (patch) | |
tree | 3d4fdf3ef62e215f2040992196bc041a91c97e90 /tests/Bootstrap.php | |
parent | 67c287192b5ff414753ae50a834932f676a0db9e (diff) |
Adding autoloader and mocks directory
Diffstat (limited to 'tests/Bootstrap.php')
-rw-r--r-- | tests/Bootstrap.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php index 39c24b219..62c7d0d52 100644 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -6,16 +6,15 @@ error_reporting(E_ALL | E_STRICT); $dir = realpath(dirname(__FILE__)); - // Path constants define('PROJECT_BASE', realpath($dir.'/../').'/'); define('BASEPATH', PROJECT_BASE.'system/'); define('APPPATH', PROJECT_BASE.'application/'); define('VIEWPATH', PROJECT_BASE.''); - // Prep our test environment -require_once $dir.'/lib/common.php'; -require_once $dir.'/lib/ci_testcase.php'; +include_once $dir.'/mocks/core/common.php'; +include_once $dir.'/mocks/autoloader.php'; +spl_autoload_register('autoload'); unset($dir);
\ No newline at end of file |