public function ClassParserTest::testParse in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php \Symfony\Component\CssSelector\Tests\Parser\Shortcut\ClassParserTest::testParse()
@dataProvider getParseTestData
File
- vendor/
symfony/ css-selector/ Tests/ Parser/ Shortcut/ ClassParserTest.php, line 23
Class
- ClassParserTest
- @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
Namespace
Symfony\Component\CssSelector\Tests\Parser\ShortcutCode
public function testParse($source, $representation) {
$parser = new ClassParser();
$selectors = $parser
->parse($source);
$this
->assertCount(1, $selectors);
/** @var SelectorNode $selector */
$selector = $selectors[0];
$this
->assertEquals($representation, (string) $selector
->getTree());
}