12345678910111213141516171819 |
- <?php
- /**
- * Part of the Fuel framework.
- *
- * @package Fuel
- * @version 1.5
- * @author Fuel Development Team
- * @license MIT License
- * @copyright 2010 - 2013 Fuel Development Team
- * @link http://fuelphp.com
- */
- namespace Fuel\Core;
- /**
- * A Fuel Specific extension of the PHPUnit TestCase. This will
- * be used for custom functionality in the future.
- */
- class TestCase extends \PHPUnit_Framework_TestCase { }
|