PhlytyTest\AppTest::testResponseIsInjectible PHP Method

testResponseIsInjectible() public method

    public function testResponseIsInjectible()
    {
        $response = new Response();
        $this->app->setResponse($response);
        $this->assertSame($response, $this->app->response());
    }
AppTest