public function testChecksEof() { $handle = fopen('php://temp', 'w+'); $stream = new Stream($handle); fwrite($handle, 'data'); $this->assertFalse($stream->eof()); $stream->read(4); $this->assertTrue($stream->eof()); }