blob: 165b5920c2c2b0b5b139b79410e554f5198cf864 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
// change the following paths if necessary
$yiit=dirname(__FILE__).'/../../../yii/framework/yiit.php';
$config=dirname(__FILE__).'/../config/test.php';
require_once($yiit);
require_once(dirname(__FILE__).'/WebTestCase.php');
Yii::createWebApplication($config);
|