skipIf(true, 'Broken'); } /** * HtmlDom test * * @return void */ public function testBasics() { $this->HtmlDom = new HtmlDom('
Hello
World
'); $result = $this->HtmlDom->find('div', 1)->innertext; $this->assertSame('World', $result); } }