mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 14:46:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			647 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			647 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
defined('YII_DEBUG') or define('YII_DEBUG', true);
 | 
						|
defined('YII_ENV') or define('YII_ENV', 'test');
 | 
						|
 | 
						|
defined('YII_TEST_ENTRY_URL') or define('YII_TEST_ENTRY_URL', \Codeception\Configuration::config()['config']['test_entry_url']);
 | 
						|
defined('YII_TEST_ENTRY_FILE') or define('YII_TEST_ENTRY_FILE', dirname(dirname(__DIR__)) . '/web/index-test.php');
 | 
						|
 | 
						|
require_once(__DIR__ . '/../../vendor/autoload.php');
 | 
						|
require_once(__DIR__ . '/../../vendor/yiisoft/yii2/Yii.php');
 | 
						|
 | 
						|
$_SERVER['SCRIPT_FILENAME'] = YII_TEST_ENTRY_FILE;
 | 
						|
$_SERVER['SCRIPT_NAME'] = YII_TEST_ENTRY_URL;
 | 
						|
$_SERVER['SERVER_NAME'] = 'localhost';
 | 
						|
 | 
						|
Yii::setAlias('@codeception', __DIR__);
 |