Example #1
0
 public function testDeleteError()
 {
     $this->setExpectedException("RuntimeException", "You can not delete an non persisted Entity");
     $entity = new TestEntity();
     $entity->set("name", "testname");
     $entity->set("key", "key_123456");
     $pdoStub = $this->getMock("TestPDO");
     $database = new Database($pdoStub);
     $database->delete($entity);
 }