Example #1
0
 public function testDeleteByPrimaryKey()
 {
     $primaryKeyValue = 1;
     $this->tableGatewayMock->expects($this->once())->method('delete')->with($this->equalTo(array("id = {$primaryKeyValue}")));
     $this->table->deleteByPrimaryKey($primaryKeyValue);
 }