Sanpi\Behatch\Context\SystemContext::commandShouldLastLessThan PHP Method

commandShouldLastLessThan() public method

Command should last less than
public commandShouldLastLessThan ( $seconds )
    public function commandShouldLastLessThan($seconds)
    {
        if ($this->lastExecutionTime > $seconds) {
            throw new \Exception(sprintf("Last command last %s which is more than %s seconds", $lastExecutionTime, $seconds));
        }
    }