示例#1
0
文件: TableTest.php 项目: t4web/base
 public function testInsert()
 {
     $data = ['key' => 'value'];
     $this->tableGatewayMock->expects($this->once())->method('insert')->with($this->equalTo($data));
     $this->table->insert($data);
 }