assertTrue($this->vacation->isVacationSupported()); } catch(Exception $e){ var_dump($e); var_dump($this->xmlrpc_client->getHttpClient()->getLastResponse()->getBody()); die("fail.."); } } public function testCheckVacation() { $this->assertFalse($this->vacation->checkVacation()); } public function testGetDetails() { $details = $this->vacation->getDetails(); $this->assertFalse($details); // empty by default (thansk to tearDown/setUp); } public function testSetAway() { try { $this->assertFalse($this->vacation->checkVacation()); $this->assertTrue($this->vacation->setAway('zzzz', 'aaaa')); $this->assertTrue($this->vacation->checkVacation()); } catch(Exception $e) { var_dump($this->xmlrpc_client->getHttpClient()->getLastResponse()->getBody()); } $details = $this->vacation->getDetails(); $this->assertEqual($details['subject'], 'zzzz'); $this->assertEqual($details['body'], 'aaaa'); $this->vacation->remove(); $details = $this->vacation->getDetails(); $this->assertEqual($details['subject'], 'zzzz'); $this->assertEqual($details['body'], 'aaaa'); $this->vacation->setAway('subject', 'body'); $details = $this->vacation->getDetails(); $this->assertEqual($details['subject'], 'subject'); $this->assertEqual($details['body'], 'body'); } } /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */