Beispiel #1
0
 public function testsave_relationship_changes()
 {
     $meeting = new Meeting();
     //execute the method and test if it works and does not throws an exception.
     try {
         $meeting->save_relationship_changes();
         $this->assertTrue(true);
     } catch (Exception $e) {
         $this->fail();
     }
 }