| 1 | <?php |
||
| 26 | class TestCase extends CakeTestCase |
||
| 27 | { |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Default plugin name. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $_plugin = 'Core'; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Setup the test case, backup the static object values so they can be restored. |
||
| 38 | * Specifically backs up the contents of Configure and paths in App if they have |
||
| 39 | * not already been backed up. |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | public function setUp() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Clears the state used for requests. |
||
| 51 | * |
||
| 52 | * @return void |
||
| 53 | */ |
||
| 54 | public function tearDown() |
||
| 59 | } |
||
| 60 |