git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@26 77cfc57b-8ef4-1849-9df6-4a38aa5da120
14 lines
350 B
PHP
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); |