1 | <?php |
||
20 | class Test implements TestListener |
||
21 | { |
||
22 | /** |
||
23 | * @var Application |
||
24 | */ |
||
25 | public static $app; |
||
26 | |||
27 | public function __construct() |
||
41 | |||
42 | public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) |
||
45 | |||
46 | public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) |
||
49 | |||
50 | public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) |
||
53 | |||
54 | public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) |
||
57 | |||
58 | public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) |
||
61 | |||
62 | public function startTest(PHPUnit_Framework_Test $test) |
||
65 | |||
66 | public function endTest(PHPUnit_Framework_Test $test, $time) |
||
69 | |||
70 | public function startTestSuite(PHPUnit_Framework_TestSuite $suite) |
||
74 | |||
75 | public function endTestSuite(PHPUnit_Framework_TestSuite $suite) |
||
78 | } |
||
79 |