Phprest\HttpFoundation\ResponseTest::testSetContent PHP Method

testSetContent() public method

public testSetContent ( )
    public function testSetContent()
    {
        $response = new Response('first');
        $response->setContent('second');
        $this->assertEquals('second', $response->getContent());
    }
ResponseTest