Blame view

app/tests/codeception/bin/_bootstrap.php 561 Bytes
bf807468   Alex Savenko   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  defined('YII_DEBUG') or define('YII_DEBUG', true);
  defined('YII_ENV') or define('YII_ENV', 'test');
  
  // fcgi doesn't have STDIN and STDOUT defined by default
  defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
  defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));
  
  defined('YII_APP_BASE_PATH') or define('YII_APP_BASE_PATH', dirname(dirname(dirname(__DIR__))));
  
  require(YII_APP_BASE_PATH . '/vendor/autoload.php');
  require(YII_APP_BASE_PATH . '/vendor/yiisoft/yii2/Yii.php');
  
  Yii::setAlias('@tests', dirname(dirname(__DIR__)));