You are here

public function DocParserTest::testTypicalMethodDocBlock 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::testTypicalMethodDocBlock()
  2. 10 core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php \Drupal\Tests\Component\Annotation\Doctrine\DocParserTest::testTypicalMethodDocBlock()

@group debug

File

core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php, line 167

Class

DocParserTest
@coversDefaultClass \Drupal\Component\Annotation\Doctrine\DocParser

Namespace

Drupal\Tests\Component\Annotation\Doctrine

Code

public function testTypicalMethodDocBlock() {
  $parser = $this
    ->createTestParser();
  $docblock = <<<DOCBLOCK
/**
 * Some nifty method.
 *
 * @since 2.0
 * @Drupal\\Tests\\Component\\Annotation\\Doctrine\\Name(foo="bar")
 * @param string \$foo This is foo.
 * @param mixed \$bar This is bar.
 * @return string Foo and bar.
 * @This is irrelevant
 * @Marker
 */
DOCBLOCK;
  $result = $parser
    ->parse($docblock);
  $this
    ->assertCount(2, $result);
  $this
    ->assertTrue(isset($result[0]));
  $this
    ->assertTrue(isset($result[1]));
  $annot = $result[0];
  $this
    ->assertInstanceOf(Name::class, $annot);
  $this
    ->assertEquals("bar", $annot->foo);
  $marker = $result[1];
  $this
    ->assertInstanceOf(Marker::class, $marker);
}