Example #1
0
 public function testDeleteBy()
 {
     $this->ormMock->expects($this->once())->method('deleteBy')->with('id', 3);
     $this->model->deleteBy('id', 3);
 }