コード例 #1
0
 function testCreateContact()
 {
     $carddata = file_get_contents(__DIR__ . '/../../data/test2.vcf');
     $vcard = Reader::read($carddata);
     $id = $this->backend->createContact('foo', $vcard);
     $this->assertNotEquals(false, $id);
     return $this->backend;
 }