| @@ 84-91 (lines=8) @@ | ||
| 81 | $this->play(__FUNCTION__, func_get_args()); |
|
| 82 | } |
|
| 83 | ||
| 84 | public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) |
|
| 85 | { |
|
| 86 | $this->replay[] = [ |
|
| 87 | 'method' => __FUNCTION__, |
|
| 88 | 'args' => func_get_args() |
|
| 89 | ]; |
|
| 90 | $this->play(__FUNCTION__, func_get_args()); |
|
| 91 | } |
|
| 92 | ||
| 93 | public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) |
|
| 94 | { |
|
| @@ 138-145 (lines=8) @@ | ||
| 135 | $this->play(__FUNCTION__, func_get_args()); |
|
| 136 | } |
|
| 137 | ||
| 138 | public function startTest(PHPUnit_Framework_Test $test) |
|
| 139 | { |
|
| 140 | $this->replay[] = [ |
|
| 141 | 'method' => __FUNCTION__, |
|
| 142 | 'args' => func_get_args() |
|
| 143 | ]; |
|
| 144 | $this->play(__FUNCTION__, func_get_args()); |
|
| 145 | } |
|
| 146 | ||
| 147 | public function endTest(PHPUnit_Framework_Test $test, $time) |
|
| 148 | { |
|
| @@ 147-154 (lines=8) @@ | ||
| 144 | $this->play(__FUNCTION__, func_get_args()); |
|
| 145 | } |
|
| 146 | ||
| 147 | public function endTest(PHPUnit_Framework_Test $test, $time) |
|
| 148 | { |
|
| 149 | $this->replay[] = [ |
|
| 150 | 'method' => __FUNCTION__, |
|
| 151 | 'args' => func_get_args() |
|
| 152 | ]; |
|
| 153 | $this->play(__FUNCTION__, func_get_args()); |
|
| 154 | } |
|
| 155 | ||
| 156 | } |
|
| 157 | ||