index-test.php 805 B

12345678910111213141516171819
  1. <?php
  2. error_reporting(E_ALL & ~E_NOTICE & ~E_COMPILE_WARNING ); //除去 E_NOTICE E_COMPILE_WARNING 之外的所有错误信息
  3. // NOTE: Make sure this file is not accessible when deployed to production
  4. if (!in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'])) {
  5. die('You are not allowed to access this file.');
  6. }
  7. defined('YII_DEBUG') or define('YII_DEBUG', true);
  8. defined('YII_ENV') or define('YII_ENV', 'test');
  9. defined('FEC_APP') or define('FEC_APP', 'apphtml5');
  10. require __DIR__.'/../../vendor/autoload.php';
  11. require __DIR__.'/../../vendor/yiisoft/yii2/Yii.php';
  12. require __DIR__.'/../../common/config/bootstrap.php';
  13. require __DIR__.'/../config/bootstrap.php';
  14. $config = require __DIR__.'/../../tests/codeception/config/backend/acceptance.php';
  15. (new yii\web\Application($config))->run();