2013-12-02 15:25:21 +04:00
|
|
|
<?php
|
2013-12-03 11:07:36 +04:00
|
|
|
|
2013-12-28 15:04:08 -05:00
|
|
|
// the entry script URL (without host info) for functional and acceptance tests
|
|
|
|
// PLEASE ADJUST IT TO THE ACTUAL ENTRY SCRIPT URL
|
2013-12-30 09:22:18 -05:00
|
|
|
defined('TEST_ENTRY_URL') or define('TEST_ENTRY_URL', '/basic/web/index-test.php');
|
2013-12-28 15:04:08 -05:00
|
|
|
|
|
|
|
// the entry script file path for functional and acceptance tests
|
|
|
|
defined('TEST_ENTRY_FILE') or define('TEST_ENTRY_FILE', dirname(__DIR__) . '/web/index-test.php');
|
|
|
|
|
2013-12-17 00:27:33 +01:00
|
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
2013-12-28 15:04:08 -05:00
|
|
|
|
2013-12-17 00:27:33 +01:00
|
|
|
defined('YII_ENV') or define('YII_ENV', 'test');
|
|
|
|
|
|
|
|
require_once(__DIR__ . '/../vendor/autoload.php');
|
2013-12-28 15:04:08 -05:00
|
|
|
|
2014-01-10 21:58:50 -05:00
|
|
|
require_once(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php');
|
2013-12-17 00:27:33 +01:00
|
|
|
|
2013-12-28 15:04:08 -05:00
|
|
|
// set correct script paths
|
|
|
|
$_SERVER['SCRIPT_FILENAME'] = TEST_ENTRY_FILE;
|
|
|
|
$_SERVER['SCRIPT_NAME'] = TEST_ENTRY_URL;
|
|
|
|
|
2013-12-17 00:27:33 +01:00
|
|
|
Yii::setAlias('@tests', __DIR__);
|