Tolerance\Waiter\Waiter::wait PHP Method

wait() public method

Wait that given amount of time.
public wait ( integer $seconds )
$seconds integer
    public function wait($seconds = 0);

Usage Example

Ejemplo n.º 1
0
 function it_always_wait_the_same_amount_of_time(Waiter $waiter)
 {
     $this->wait();
     $waiter->wait(3)->shouldHaveBeenCalled();
     $this->wait();
     $waiter->wait(3)->shouldHaveBeenCalled();
 }
All Usage Examples Of Tolerance\Waiter\Waiter::wait
Waiter