1 | <?php |
||
7 | class DelegatingListener implements \PHPUnit_Framework_TestListener |
||
8 | { |
||
9 | /** \PHPUnit_Framework_TestListener[] */ |
||
10 | private $listenerList = []; |
||
11 | |||
12 | 10 | public function addListener(\PHPUnit_Framework_TestListener $listener) |
|
16 | |||
17 | /** |
||
18 | * @return \PHPUnit_Framework_TestListener[] |
||
19 | */ |
||
20 | 1 | public function getListenerList() |
|
24 | |||
25 | 1 | public function addError(\PHPUnit_Framework_Test $test, \Exception $e, $time) |
|
31 | |||
32 | 1 | public function addFailure(\PHPUnit_Framework_Test $test, \PHPUnit_Framework_AssertionFailedError $e, $time) |
|
38 | |||
39 | 1 | public function addIncompleteTest(\PHPUnit_Framework_Test $test, \Exception $e, $time) |
|
45 | |||
46 | 1 | public function addRiskyTest(\PHPUnit_Framework_Test $test, \Exception $e, $time) |
|
52 | |||
53 | 1 | public function addSkippedTest(\PHPUnit_Framework_Test $test, \Exception $e, $time) |
|
59 | |||
60 | 1 | public function startTestSuite(\PHPUnit_Framework_TestSuite $suite) |
|
66 | |||
67 | 1 | public function endTestSuite(\PHPUnit_Framework_TestSuite $suite) |
|
73 | |||
74 | 1 | public function startTest(\PHPUnit_Framework_Test $test) |
|
80 | |||
81 | 1 | public function endTest(\PHPUnit_Framework_Test $test, $time) |
|
87 | } |
||
88 |