You are here

public function DocParserTest::testSupportsEscapedQuotedValues in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php \Drupal\Tests\Component\Annotation\Doctrine\DocParserTest::testSupportsEscapedQuotedValues()
  2. 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\Doctrine

Code

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