1 | <?php |
||
21 | class Test implements TestListener |
||
22 | { |
||
23 | /** |
||
24 | * @var Application |
||
25 | */ |
||
26 | public static $app; |
||
27 | |||
28 | public function __construct() |
||
42 | |||
43 | public function addError(PHPUnitTest $test, Exception $e, $time) |
||
46 | |||
47 | public function addFailure(PHPUnitTest $test, AssertionFailedError $e, $time) |
||
50 | |||
51 | public function addIncompleteTest(PHPUnitTest $test, Exception $e, $time) |
||
54 | |||
55 | public function addRiskyTest(PHPUnitTest $test, Exception $e, $time) |
||
58 | |||
59 | public function addSkippedTest(PHPUnitTest $test, Exception $e, $time) |
||
62 | |||
63 | public function addWarning(PHPUnitTest $test, Warning $e, $time) |
||
66 | |||
67 | public function startTest(PHPUnitTest $test) |
||
70 | |||
71 | public function endTest(PHPUnitTest $test, $time) |
||
74 | |||
75 | public function startTestSuite(TestSuite $suite) |
||
78 | |||
79 | public function endTestSuite(TestSuite $suite) |
||
82 | } |
||
83 |