Neos\Flow\Tests\Unit\Http\ResponseTest::toStringAlwaysReturnsAStringRepresentationOfContent PHP Method

toStringAlwaysReturnsAStringRepresentationOfContent() public method

public toStringAlwaysReturnsAStringRepresentationOfContent ( $content, $expectedString )
    public function toStringAlwaysReturnsAStringRepresentationOfContent($content, $expectedString)
    {
        $response = new Response();
        $response->setContent($content);
        $this->assertSame($expectedString, (string) $response);
    }
ResponseTest