File: Issue153Test.php

package info (click to toggle)
php-sabre-vobject 2.1.7-6.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 1,172 kB
  • sloc: php: 6,487; makefile: 17; xml: 16
file content (14 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Sabre\VObject;

class Issue153Test extends \PHPUnit\Framework\TestCase {

    function testRead() {

        $obj = Reader::read(file_get_contents(dirname(__FILE__) . '/issue153.vcf'));
        $this->assertEquals('Test Benutzer', (string)$obj->fn);

    }

}