Phprest\HttpFoundation\ResponseTest::testSetContent PHP Méthode

testSetContent() public méthode

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