You are here

public function DocParserTest::testAnnotationWithInvalidTargetDeclarationError in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php \Drupal\Tests\Component\Annotation\Doctrine\DocParserTest::testAnnotationWithInvalidTargetDeclarationError()

File

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

Class

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

Namespace

Drupal\Tests\Component\Annotation\Doctrine

Code

public function testAnnotationWithInvalidTargetDeclarationError() {
  $this
    ->expectException('\\InvalidArgumentException');
  $this
    ->expectExceptionMessage('Invalid Target "Foo". Available targets: [ALL, CLASS, METHOD, PROPERTY, FUNCTION, ANNOTATION]');
  $parser = $this
    ->createTestParser();
  $context = 'class ' . 'SomeClassName';
  $docblock = <<<DOCBLOCK
/**
 * @AnnotationWithInvalidTargetDeclaration()
 */
DOCBLOCK;
  $parser
    ->setTarget(Target::TARGET_CLASS);
  $parser
    ->parse($docblock, $context);
}