annotate vendor/sabre/vobject/tests/VObject/Issue153Test.php @ 26:b2b6c0af2383
remove _ from name, lots of other hacks to get label context menu working
| author |
Charlie Root |
| date |
Sun, 28 Jan 2018 11:32:20 -0500 |
| parents |
430dbd5346f7 |
| children |
|
| rev |
line source |
|
7
|
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 }
|