2016-01-02 19:13:18 +05:30
|
|
|
<?php
|
|
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
2016-09-19 03:31:19 +05:30
|
|
|
defined('YII_ENV_TEST') or define('YII_ENV_TEST', true);
|
|
|
|
defined('YII_ENV') or define('YII_ENV', 'dev');
|
2016-01-02 19:13:18 +05:30
|
|
|
|
2016-09-19 03:31:19 +05:30
|
|
|
require_once __DIR__ . '/../../../vendor/autoload.php';
|
|
|
|
require_once __DIR__ . '/../../../vendor/yiisoft/yii2/Yii.php';
|
|
|
|
require_once __DIR__ . '/../../../common/config/bootstrap.php';
|
|
|
|
require_once __DIR__ . '/../../../console/config/bootstrap.php';
|
2016-01-02 19:13:18 +05:30
|
|
|
|
|
|
|
// set correct script paths
|
|
|
|
$_SERVER['SERVER_NAME'] = 'localhost';
|
|
|
|
$_SERVER['SERVER_PORT'] = '80';
|
|
|
|
|
|
|
|
Yii::setAlias('@tests', dirname(dirname(__DIR__)));
|
2016-07-15 03:33:13 +05:30
|
|
|
\Codeception\Specify\Config::setDeepClone(false);
|