ElementParserTest.php in Zircon Profile 8.0
File
vendor/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php
View source
<?php
namespace Symfony\Component\CssSelector\Tests\Parser\Shortcut;
use Symfony\Component\CssSelector\Node\SelectorNode;
use Symfony\Component\CssSelector\Parser\Shortcut\ElementParser;
class ElementParserTest extends \PHPUnit_Framework_TestCase {
public function testParse($source, $representation) {
$parser = new ElementParser();
$selectors = $parser
->parse($source);
$this
->assertCount(1, $selectors);
$selector = $selectors[0];
$this
->assertEquals($representation, (string) $selector
->getTree());
}
public function getParseTestData() {
return array(
array(
'*',
'Element[*]',
),
array(
'testel',
'Element[testel]',
),
array(
'testns|*',
'Element[testns|*]',
),
array(
'testns|testel',
'Element[testns|testel]',
),
);
}
}