Example #1
0
 public function test_delete()
 {
     $object = $this->sqldao->find_by_id(self::AUTO_INSERTED_OBJECT_ID);
     self::assertObjectExists($object);
     $this->sqldao->delete($object);
     self::assertObjectDoesNotExist($object);
 }