@@ 247-249 (lines=3) @@ | ||
244 | { |
|
245 | preg_match_all('/([0-9]+) assertions/', $outputBuffer, $matches); |
|
246 | ||
247 | if (isset($matches[1][0])) { |
|
248 | $this->chunkResults->incrementNumAssertions((int) $matches[1][0]); |
|
249 | } |
|
250 | ||
251 | preg_match_all('/Assertions: ([0-9]+)/', $outputBuffer, $matches); |
|
252 | ||
@@ 253-255 (lines=3) @@ | ||
250 | ||
251 | preg_match_all('/Assertions: ([0-9]+)/', $outputBuffer, $matches); |
|
252 | ||
253 | if (isset($matches[1][0])) { |
|
254 | $this->chunkResults->incrementNumAssertions((int) $matches[1][0]); |
|
255 | } |
|
256 | ||
257 | preg_match_all('/Failures: ([0-9]+)/', $outputBuffer, $matches); |
|
258 |