blob: ca63ff788f3548b327435d8e11b2130d6209b295 [file] [log] [blame]
Pascal Kriete69c97a72011-04-20 21:44:54 -04001<?php
2
3ini_set('display_errors', 1);
4error_reporting(E_ALL | E_STRICT);
5
6if ( ! defined('PROJECT_BASE'))
7{
8 define('PROJECT_BASE', realpath(dirname(__FILE__).'/../').'/');
9
10 define('BASEPATH', PROJECT_BASE.'system/');
11 define('APPPATH', PROJECT_BASE.'application/');
12}
13// define('EXT', '.php');
14
15// @todo provide a way to set various config options
16
17
18
19// set up a highly controlled CI environment
20require_once './lib/common.php';
21require_once './lib/ci_testcase.php';