You are here

public function AttributeNodeTest::getSpecificityValueTestData in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/css-selector/Tests/Node/AttributeNodeTest.php \Symfony\Component\CssSelector\Tests\Node\AttributeNodeTest::getSpecificityValueTestData()

Overrides AbstractNodeTest::getSpecificityValueTestData

File

vendor/symfony/css-selector/Tests/Node/AttributeNodeTest.php, line 28

Class

AttributeNodeTest

Namespace

Symfony\Component\CssSelector\Tests\Node

Code

public function getSpecificityValueTestData() {
  return array(
    array(
      new AttributeNode(new ElementNode(), null, 'attribute', 'exists', null),
      10,
    ),
    array(
      new AttributeNode(new ElementNode(null, 'element'), null, 'attribute', 'exists', null),
      11,
    ),
    array(
      new AttributeNode(new ElementNode(), null, 'attribute', '$=', 'value'),
      10,
    ),
    array(
      new AttributeNode(new ElementNode(), 'namespace', 'attribute', '$=', 'value'),
      10,
    ),
  );
}