public function HashHandlerTest::getDontHandleValueTestData in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/css-selector/Tests/Parser/Handler/HashHandlerTest.php \Symfony\Component\CssSelector\Tests\Parser\Handler\HashHandlerTest::getDontHandleValueTestData()
 
Overrides AbstractHandlerTest::getDontHandleValueTestData
File
- vendor/
symfony/ css-selector/ Tests/ Parser/ Handler/ HashHandlerTest.php, line 32  
Class
Namespace
Symfony\Component\CssSelector\Tests\Parser\HandlerCode
public function getDontHandleValueTestData() {
  return array(
    array(
      'id',
    ),
    array(
      '123',
    ),
    array(
      '<',
    ),
    array(
      '<',
    ),
    array(
      '#',
    ),
  );
}