Skip to content

Commit

Permalink
Checking errors with E_ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgiosironi committed Mar 2, 2013
1 parent 0e045d8 commit daf91a0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/ParaTest/Runners/PHPUnit/WrapperRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private function load()
$this->printer->addTest($pending);
}

private function startWorkers($number)
private function startWorkers()
{
for ($i = 0; $i < $this->options->processes; $i++) {
$worker = new Worker();
Expand Down Expand Up @@ -164,6 +164,11 @@ private function log()
$writer->write($output);
}

public function getExitCode()
{
return 0;
}

/**
private function testIsStillRunning($test)
{
Expand Down

0 comments on commit daf91a0

Please sign in to comment.