Example #1
0
 public function testUpdateByPrimaryKey()
 {
     $data = [];
     $primaryKeyValue = 1;
     $this->tableGatewayMock->expects($this->once())->method('update')->with($this->equalTo($data), $this->equalTo(array("id = {$primaryKeyValue}")));
     $this->table->updateByPrimaryKey($data, $primaryKeyValue);
 }