|
@@ 517-519 (lines=3) @@
|
| 514 |
|
{ |
| 515 |
|
preg_match_all('/([0-9]+) assertions/', $outputBuffer, $matches); |
| 516 |
|
|
| 517 |
|
if (isset($matches[1][0])) { |
| 518 |
|
$this->numAssertions += (int) $matches[1][0]; |
| 519 |
|
} |
| 520 |
|
|
| 521 |
|
preg_match_all('/Assertions: ([0-9]+)/', $outputBuffer, $matches); |
| 522 |
|
|
|
@@ 523-525 (lines=3) @@
|
| 520 |
|
|
| 521 |
|
preg_match_all('/Assertions: ([0-9]+)/', $outputBuffer, $matches); |
| 522 |
|
|
| 523 |
|
if (isset($matches[1][0])) { |
| 524 |
|
$this->numAssertions += (int) $matches[1][0]; |
| 525 |
|
} |
| 526 |
|
|
| 527 |
|
preg_match_all('/Failures: ([0-9]+)/', $outputBuffer, $matches); |
| 528 |
|
|