]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/Tests/_files/TornDown.php
Added unit tests.
[Github/sugarcrm.git] / tests / PHPUnit / Tests / _files / TornDown.php
1 <?php
2 class TornDown extends PHPUnit_Framework_TestCase
3 {
4     public $tornDown = FALSE;
5
6     protected function tearDown()
7     {
8         $this->tornDown = TRUE;
9     }
10
11     protected function runTest()
12     {
13         throw new Exception;
14     }
15 }
16 ?>