Funciona: - Usuario - Empresa git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@2 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
24 lines
728 B
PHP
24 lines
728 B
PHP
<?php
|
|
/**
|
|
* Yii test script file.
|
|
*
|
|
* This script is meant to be included at the beginning
|
|
* of the unit and function test bootstrap files.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008-2011 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
* @version $Id$
|
|
*/
|
|
|
|
// disable Yii error handling logic
|
|
defined('YII_ENABLE_EXCEPTION_HANDLER') or define('YII_ENABLE_EXCEPTION_HANDLER',false);
|
|
defined('YII_ENABLE_ERROR_HANDLER') or define('YII_ENABLE_ERROR_HANDLER',false);
|
|
|
|
require_once(dirname(__FILE__).'/yii.php');
|
|
|
|
Yii::import('system.test.CTestCase');
|
|
Yii::import('system.test.CDbTestCase');
|
|
Yii::import('system.test.CWebTestCase');
|