Beispiel #1
0
 function testGetDocumentType()
 {
     $vcard = new VCard([], false);
     $vcard->VERSION = '2.1';
     $this->assertEquals(VCard::VCARD21, $vcard->getDocumentType());
     $vcard = new VCard([], false);
     $vcard->VERSION = '3.0';
     $this->assertEquals(VCard::VCARD30, $vcard->getDocumentType());
     $vcard = new VCard([], false);
     $vcard->VERSION = '4.0';
     $this->assertEquals(VCard::VCARD40, $vcard->getDocumentType());
     $vcard = new VCard([], false);
     $this->assertEquals(VCard::UNKNOWN, $vcard->getDocumentType());
 }