Mercurial > hg > rc1
comparison vendor/sabre/vobject/tests/VObject/Issue153Test.php @ 7:430dbd5346f7
vendor sabre as distributed
author | Charlie Root |
---|---|
date | Sat, 13 Jan 2018 09:06:10 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
6:cec75ba50afc | 7:430dbd5346f7 |
---|---|
1 <?php | |
2 | |
3 namespace Sabre\VObject; | |
4 | |
5 class Issue153Test extends \PHPUnit_Framework_TestCase { | |
6 | |
7 function testRead() { | |
8 | |
9 $obj = Reader::read(file_get_contents(dirname(__FILE__) . '/issue153.vcf')); | |
10 $this->assertEquals('Test Benutzer', (string)$obj->fn); | |
11 | |
12 } | |
13 | |
14 } |