]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/Tests/_files/TornDown2.php
Added unit tests.
[Github/sugarcrm.git] / tests / PHPUnit / Tests / _files / TornDown2.php
1 <?php
2 require_once 'TornDown.php';
3
4 class TornDown2 extends TornDown
5 {
6     protected function tearDown()
7     {
8         parent::tearDown();
9         throw new Exception;
10     }
11
12     protected function runTest()
13     {
14         throw new Exception;
15     }
16 }
17 ?>