You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
533 B
19 lines
533 B
9 years ago
|
<?php
|
||
|
/**
|
||
|
* @link https://github.com/paulzi/yii2-nested-sets
|
||
|
* @copyright Copyright (c) 2015 PaulZi <pavel.zimakoff@gmail.com>
|
||
|
* @license MIT (https://github.com/paulzi/yii2-nested-sets/blob/master/LICENSE)
|
||
|
*/
|
||
|
|
||
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
||
|
defined('YII_ENV') or define('YII_ENV', 'test');
|
||
|
|
||
|
require(__DIR__ . '/../vendor/autoload.php');
|
||
|
require(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php');
|
||
|
|
||
|
Yii::setAlias('@tests', __DIR__);
|
||
|
|
||
|
new \yii\console\Application([
|
||
|
'id' => 'unit',
|
||
|
'basePath' => __DIR__,
|
||
|
]);
|