Mercurial > hg > rc1
view vendor/sabre/vobject/tests/VObject/Issue40Test.php @ 38:ac106d4c8961 default tip
flip /etc/roundcube to point here
author | Charlie Root |
---|---|
date | Sat, 29 Dec 2018 05:39:53 -0500 |
parents | 430dbd5346f7 |
children |
line wrap: on
line source
<?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()); } }