예제 #1
0
파일: TableTest.php 프로젝트: t4web/base
 public function testDelete()
 {
     $conditions = [];
     $this->tableGatewayMock->expects($this->once())->method('delete')->with($this->equalTo($conditions));
     $this->table->delete($conditions);
 }