You are here

public function CrawlerTest::testFilterXPathWithFakeRoot in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dom-crawler/Tests/CrawlerTest.php \Symfony\Component\DomCrawler\Tests\CrawlerTest::testFilterXPathWithFakeRoot()

File

vendor/symfony/dom-crawler/Tests/CrawlerTest.php, line 498

Class

CrawlerTest

Namespace

Symfony\Component\DomCrawler\Tests

Code

public function testFilterXPathWithFakeRoot() {
  $crawler = $this
    ->createTestCrawler();
  $this
    ->assertCount(0, $crawler
    ->filterXPath('.'), '->filterXPath() returns an empty result if the XPath references the fake root node');
  $this
    ->assertCount(0, $crawler
    ->filterXPath('/_root'), '->filterXPath() returns an empty result if the XPath references the fake root node');
  $this
    ->assertCount(0, $crawler
    ->filterXPath('self::*'), '->filterXPath() returns an empty result if the XPath references the fake root node');
  $this
    ->assertCount(0, $crawler
    ->filterXPath('self::_root'), '->filterXPath() returns an empty result if the XPath references the fake root node');
}