コード例 #1
0
 function testCreateAddressBookFail()
 {
     $id = $this->backend->createAddressBook(array('description' => 'foo bar'));
     $this->assertFalse($id);
 }
コード例 #2
0
 public function testCreateAddressBookFail()
 {
     // displayname must be provided.
     $id = $this->backend->createAddressBook(array('description' => 'foo bar'));
     $this->assertFalse($id);
 }