Ejemplo n.º 1
0
 public function testParseUri()
 {
     $res = new EasyRdf_Resource('http://example.com/foo/bar');
     $uri = $res->parseUri();
     $this->assertClass('EasyRdf_ParsedUri', $uri);
     $this->assertSame('/foo/bar', $uri->getPath());
 }