You are here

public function ClassParserTest::testParse in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\Shortcut

Code

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());
}