CombinedSelectorNodeTest.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\CssSelector\Tests\Node;
  11. use Symfony\Component\CssSelector\Node\CombinedSelectorNode;
  12. use Symfony\Component\CssSelector\Node\ElementNode;
  13. class CombinedSelectorNodeTest extends AbstractNodeTest
  14. {
  15. public function getToStringConversionTestData()
  16. {
  17. return [
  18. [new CombinedSelectorNode(new ElementNode(), '>', new ElementNode()), 'CombinedSelector[Element[*] > Element[*]]'],
  19. [new CombinedSelectorNode(new ElementNode(), ' ', new ElementNode()), 'CombinedSelector[Element[*] <followed> Element[*]]'],
  20. ];
  21. }
  22. public function getSpecificityValueTestData()
  23. {
  24. return [
  25. [new CombinedSelectorNode(new ElementNode(), '>', new ElementNode()), 0],
  26. [new CombinedSelectorNode(new ElementNode(null, 'element'), '>', new ElementNode()), 1],
  27. [new CombinedSelectorNode(new ElementNode(null, 'element'), '>', new ElementNode(null, 'element')), 2],
  28. ];
  29. }
  30. }