Example #1
0
 public function test_update()
 {
     $object = $this->sqldao->find_by_id(self::AUTO_INSERTED_OBJECT_ID);
     $object->set_title('coucou c\'est renoux');
     $this->sqldao->save($object);
     self::assertObjectExists($object);
 }