Actualización

This commit is contained in:
Xes
2025-04-10 12:24:57 +02:00
parent 8969cc929d
commit 45420b6f0d
39760 changed files with 4303286 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace Sabre\VObject;
/**
* This test is created to handle the issues brought forward by issue 40.
*
* https://github.com/fruux/sabre-vobject/issues/40
*/
class Issue40Test extends \PHPUnit_Framework_TestCase {
function testEncode() {
$card = new Component\VCard();
$card->add('N', array('van der Harten', array('Rene','J.'), "", 'Sir','R.D.O.N.'), array('SORT-AS' => array('Harten','Rene')));
$expected = implode("\r\n", array(
"BEGIN:VCARD",
"VERSION:3.0",
"PRODID:-//Sabre//Sabre VObject " . Version::VERSION . '//EN',
"N;SORT-AS=Harten,Rene:van der Harten;Rene,J.;;Sir;R.D.O.N.",
"END:VCARD",
""
));
$this->assertEquals($expected, $card->serialize());
}
}