/**
  * @test
  */
 public function stream_eofTest()
 {
     $this->mockStreamWrapper->expects($this->once())->method('isAtEof')->will($this->returnValue(true));
     $this->assertTrue($this->streamWrapperAdapter->stream_eof());
 }