function DocParserTest::testSupportsEscapedQuotedValues

Same name 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()
  3. 11.x 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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.