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

testHandleFailMoreThanMaxTimes() public method

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