public function DocParserTest::testSupportsEscapedQuotedValues in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php \Drupal\Tests\Component\Annotation\Doctrine\DocParserTest::testSupportsEscapedQuotedValues()
- 10 core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php \Drupal\Tests\Component\Annotation\Doctrine\DocParserTest::testSupportsEscapedQuotedValues()
@group 44
File
- core/
tests/ Drupal/ Tests/ Component/ Annotation/ Doctrine/ DocParserTest.php, line 1305
Class
- DocParserTest
- @coversDefaultClass \Drupal\Component\Annotation\Doctrine\DocParser
Namespace
Drupal\Tests\Component\Annotation\DoctrineCode
public function testSupportsEscapedQuotedValues() {
$result = $this
->createTestParser()
->parse('@Drupal\\Tests\\Component\\Annotation\\Doctrine\\Name(foo="""bar""")');
$this
->assertCount(1, $result);
$this
->assertInstanceOf(Name::class, $result[0]);
$this
->assertEquals('"bar"', $result[0]->foo);
}