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