ParaTest\Runners\PHPUnit\Runner::setExitCode PHP 메소드

setExitCode() 개인적인 메소드

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;
        }
    }