public function testsave_relationship_changes()
 {
     $opportunity = new Opportunity();
     $opportunity->account_id = 1;
     try {
         $opportunity->save_relationship_changes(true);
         $this->assertTrue(true);
     } catch (Exception $e) {
         $this->fail();
     }
 }