PhlyTest\Http\StreamTest::testToStringRetrievesFullContentsOfStream PHP Method

testToStringRetrievesFullContentsOfStream() public method

    public function testToStringRetrievesFullContentsOfStream()
    {
        $message = 'foo bar';
        $this->stream->write($message);
        $this->assertEquals($message, (string) $this->stream);
    }
StreamTest