コード例 #1
0
ファイル: ReadTest.php プロジェクト: pradeep-wagento/magento2
 public function testClose()
 {
     $result = 'content';
     $this->driver->expects($this->once())->method('fileClose')->with($this->resource)->will($this->returnValue($result));
     $this->assertEquals($result, $this->file->close());
 }