You are here

public function IdentifierHandlerTest::getDontHandleValueTestData in Zircon Profile 8.0

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

Overrides AbstractHandlerTest::getDontHandleValueTestData

File

vendor/symfony/css-selector/Tests/Parser/Handler/IdentifierHandlerTest.php, line 32

Class

IdentifierHandlerTest

Namespace

Symfony\Component\CssSelector\Tests\Parser\Handler

Code

public function getDontHandleValueTestData() {
  return array(
    array(
      '>',
    ),
    array(
      '+',
    ),
    array(
      ' ',
    ),
    array(
      '*|foo',
    ),
    array(
      '/* comment */',
    ),
  );
}