Mercurial > hg > rc1
annotate vendor/sabre/vobject/tests/VObject/Issue64Test.php @ 40:3ea4a836c377
tweaks
| author | Charlie Root |
|---|---|
| date | Fri, 24 Jan 2025 14:16:58 -0500 |
| parents | 430dbd5346f7 |
| children |
| rev | line source |
|---|---|
| 7 | 1 <?php |
| 2 | |
| 3 namespace Sabre\VObject; | |
| 4 | |
| 5 class Issue64Test extends \PHPUnit_Framework_TestCase { | |
| 6 | |
| 7 function testRead() { | |
| 8 | |
| 9 $vcard = Reader::read(file_get_contents(dirname(__FILE__) . '/issue64.vcf')); | |
| 10 $vcard = $vcard->convert(\Sabre\VObject\Document::VCARD30); | |
| 11 $vcard = $vcard->serialize(); | |
| 12 | |
| 13 $converted = Reader::read($vcard); | |
| 14 | |
| 15 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCard', $converted); | |
| 16 | |
| 17 } | |
| 18 | |
| 19 } |
