You are here

public function ElementParserTest::getParseTestData in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php \Symfony\Component\CssSelector\Tests\Parser\Shortcut\ElementParserTest::getParseTestData()

File

vendor/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php, line 34

Class

ElementParserTest
@author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

Namespace

Symfony\Component\CssSelector\Tests\Parser\Shortcut

Code

public function getParseTestData() {
  return array(
    array(
      '*',
      'Element[*]',
    ),
    array(
      'testel',
      'Element[testel]',
    ),
    array(
      'testns|*',
      'Element[testns|*]',
    ),
    array(
      'testns|testel',
      'Element[testns|testel]',
    ),
  );
}