This commit is contained in:
Xes
2025-08-14 22:41:49 +02:00
parent 2de81ccc46
commit 8ce45119b6
39774 changed files with 4309466 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
<?php
namespace Sabre\VObject;
/**
* Assorted vcard 2.1 tests.
*/
class VCard21Test extends \PHPUnit_Framework_TestCase {
function testPropertyWithNoName() {
$input = <<<VCF
BEGIN:VCARD\r
VERSION:2.1\r
EMAIL;HOME;WORK:evert@fruux.com\r
END:VCARD\r
VCF;
$vobj = Reader::read($input);
$output = $vobj->serialize($input);
$this->assertEquals($input, $output);
}
function testPropertyPadValueCount() {
$input = <<<VCF
BEGIN:VCARD
VERSION:2.1
N:Foo
END:VCARD
VCF;
$vobj = Reader::read($input);
$output = $vobj->serialize($input);
$expected = <<<VCF
BEGIN:VCARD\r
VERSION:2.1\r
N:Foo;;;;\r
END:VCARD\r
VCF;
$this->assertEquals($expected, $output);
}
}