ZendTest\Stratigility\FinalHandlerTest::testCreates404ResponseWhenNoErrorIsPresent PHP Method

testCreates404ResponseWhenNoErrorIsPresent() public method

    public function testCreates404ResponseWhenNoErrorIsPresent()
    {
        $response = call_user_func($this->final, $this->request, $this->response, null);
        $this->assertEquals(404, $response->getStatusCode());
    }
FinalHandlerTest