Exemplo n.º 1
0
 /**
  * @expectedException \Exception
  * @expectedExceptionMessage Cannot delete. Primary key column [tradedate] is not set.
  */
 public function testDeleteWithoutPKComposite2()
 {
     $trade = new Trade();
     $trade->tradeno = 100;
     $trade->delete();
 }