Incam_IntranetNueva/www/protected/tests/bootstrap.php
2012-03-06 21:01:06 +00:00

14 lines
350 B
PHP

<?php
$yiit=dirname(__FILE__).'/../../../yii/framework/yiit.php';
// set environment
require_once(dirname(__FILE__) . '/../config/Environment.php');
$env = new Environment('TEST'); //override
$config = $env->getConfig();
// run Yii app
require_once($yiit);
require_once(dirname(__FILE__).'/WebTestCase.php');
Yii::createWebApplication($config);