Esempio n. 1
0
 function cache_sugar_vcal(&$user_focus)
 {
     vCal::cache_sugar_vcal_freebusy($user_focus);
 }
Esempio n. 2
0
 public function testcache_sugar_vcal_freebusy()
 {
     $vcal = new vCal();
     $user_focus = new User('1');
     //execute the method and test if it works and does not throws an exception.
     try {
         $vcal->cache_sugar_vcal_freebusy($user_focus);
         $this->assertTrue(true);
     } catch (Exception $e) {
         $this->fail();
     }
 }