Ejemplo n.º 1
0
 public function testFixEmbedded()
 {
     $doc = new TikaWrapper($this->resource, $this->client);
     $html = '<img src="embedded:image1.png">';
     $fixed = $doc->fixEmbedded($html);
     $this->assertEquals('<img src="image1.png">', $fixed);
 }