Graze\Supervisor\Handler\RetryHandlerTest::setUp PHP Метод

setUp() публичный Метод

public setUp ( )
    public function setUp()
    {
        $this->max = 3;
        $this->next = m::mock('Graze\\Supervisor\\Handler\\HandlerInterface');
        $this->sup = m::mock('Graze\\Supervisor\\SupervisorInterface');
        $this->handler = new RetryHandler($this->max, $this->next);
    }