Graze\Supervisor\Handler\RetryHandlerTest::testHandlePassMoreThanMaxTimes PHP Method

testHandlePassMoreThanMaxTimes() public method

    public function testHandlePassMoreThanMaxTimes()
    {
        $this->next->shouldReceive('handlePass')->once()->with($this->max + 1, $this->sup)->andReturn(false);
        $this->assertFalse($this->handler->handlePass($this->max + 1, $this->sup));
    }