]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/Tests/_files/TearDownFailure.php
Added unit tests.
[Github/sugarcrm.git] / tests / PHPUnit / Tests / _files / TearDownFailure.php
1 <?php
2 require_once 'Success.php';
3
4 class TearDownFailure extends Success
5 {
6     protected function tearDown()
7     {
8         throw new Exception;
9     }
10 }
11 ?>