2012-01-26 11:01:38 +00:00
|
|
|
<?php
|
2012-03-06 21:01:06 +00:00
|
|
|
|
2012-01-26 11:13:10 +00:00
|
|
|
$yiit=dirname(__FILE__).'/../../../yii/framework/yiit.php';
|
2012-01-26 11:01:38 +00:00
|
|
|
|
2012-03-06 21:01:06 +00:00
|
|
|
// set environment
|
|
|
|
|
require_once(dirname(__FILE__) . '/../config/Environment.php');
|
|
|
|
|
$env = new Environment('TEST'); //override
|
|
|
|
|
$config = $env->getConfig();
|
|
|
|
|
|
|
|
|
|
// run Yii app
|
2012-01-26 11:01:38 +00:00
|
|
|
require_once($yiit);
|
|
|
|
|
require_once(dirname(__FILE__).'/WebTestCase.php');
|
|
|
|
|
|
2012-03-06 21:01:06 +00:00
|
|
|
Yii::createWebApplication($config);
|