ParaTest\Runners\PHPUnit\Runner::setExitCode PHP Method

setExitCode() private method

If the provided test object has an exit code higher than the currently set exit code, that exit code will be set as the overall exit code
private setExitCode ( ParaTest\Runners\PHPUnit\ExecutableTest $test )
$test ParaTest\Runners\PHPUnit\ExecutableTest
    private function setExitCode(ExecutableTest $test)
    {
        $exit = $test->getExitCode();
        if ($exit > $this->exitcode) {
            $this->exitcode = $exit;
        }
    }