You are here

public function WhitespaceHandlerTest::getDontHandleValueTestData in Zircon Profile 8.0

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

Overrides AbstractHandlerTest::getDontHandleValueTestData

File

vendor/symfony/css-selector/Tests/Parser/Handler/WhitespaceHandlerTest.php, line 31

Class

WhitespaceHandlerTest

Namespace

Symfony\Component\CssSelector\Tests\Parser\Handler

Code

public function getDontHandleValueTestData() {
  return array(
    array(
      '>',
    ),
    array(
      '1',
    ),
    array(
      'a',
    ),
  );
}