Files
yii2/framework/test/TestCase.php
Qiang Xue 7106337421 test
2011-07-20 00:03:13 -04:00

24 lines
475 B
PHP

<?php
/**
* TestCase class.
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 2008-2012 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\test;
require_once('PHPUnit/Runner/Version.php');
require_once('PHPUnit/Autoload.php');
/**
* TestCase is the base class for all test case classes.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
abstract class TestCase extends \PHPUnit_Framework_TestCase
{
}