]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/Tests/_files/MockRunner.php
Added unit tests.
[Github/sugarcrm.git] / tests / PHPUnit / Tests / _files / MockRunner.php
1 <?php
2 require_once 'PHPUnit/Runner/BaseTestRunner.php';
3
4 class MockRunner extends PHPUnit_Runner_BaseTestRunner
5 {
6     public function testEnded($testName)
7     {
8     }
9
10     public function testFailed($status, PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e)
11     {
12     }
13
14     public function testStarted($testName)
15     {
16     }
17
18     protected function runFailed($message)
19     {
20     }
21 }
22 ?>