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