public function DocParserTest::testAnnotationThrowsExceptionWhenAtSignIsNotFollowedByIdentifierInNestedAnnotation

@group DCOM-41 @expectedException Doctrine\Common\Annotations\AnnotationException

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/DocParserTest.php, line 915

Class

DocParserTest

Namespace

Doctrine\Tests\Common\Annotations

Code

public function testAnnotationThrowsExceptionWhenAtSignIsNotFollowedByIdentifierInNestedAnnotation() {
  $parser = new DocParser();
  $result = $parser
    ->parse("@Doctrine\\Tests\\Common\\Annotations\\Name(@')");
}