function DocParserTest::testAnnotationWithInvalidTargetDeclarationError
File
- 
              core/tests/ Drupal/ Tests/ Component/ Annotation/ Doctrine/ DocParserTest.php, line 933 
Class
- DocParserTest
- @coversDefaultClass \Drupal\Component\Annotation\Doctrine\DocParser[[api-linebreak]]
Namespace
Drupal\Tests\Component\Annotation\DoctrineCode
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);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
