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