assertNotNull($stream); } public function testCreatesInstanceWithString() { $message = "Hello, World!"; $stream = new StringStream($message); $this->assertEquals($message, (string) $stream); } public function testAllowsWriting() { $message = "Hello, World!"; $stream = new StringStream(); $stream->write("Hello,"); $stream->write(" World!"); $this->assertEquals($message, (string) $stream); } }