Exemplo n.º 1
0
 /**
  * @expectedException PHPHtmlParser\Exceptions\ParentNotFoundException
  */
 public function testAncestorByTagFailure()
 {
     $a = new Tag('a');
     $node = new HtmlNode($a);
     $node->ancestorByTag('div');
 }