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