getFreebusyServer() public method

Return the freebusy server.
public getFreebusyServer ( ) : string
return string The freebusy host for the current user.
示例#1
0
文件: BaseTest.php 项目: horde/horde
 public function testMethodGetfreebusyserverGetsDelegated()
 {
     $session = $this->getMock('Horde_Kolab_Session');
     $session->expects($this->once())->method('getFreebusyServer')->will($this->returnValue('1'));
     $anonymous = new Horde_Kolab_Session_Decorator_Base($session);
     $anonymous->getFreebusyServer();
 }