PHPUnit_Framework_TestResult::setTimeoutForLargeTests PHP Method

setTimeoutForLargeTests() public method

Sets the timeout for large tests.
public setTimeoutForLargeTests ( integer $timeout )
$timeout integer
    public function setTimeoutForLargeTests($timeout)
    {
        if (!is_integer($timeout)) {
            throw PHPUnit_Util_InvalidArgumentHelper::factory(1, 'integer');
        }
        $this->timeoutForLargeTests = $timeout;
    }