public function DocParserTest::testAnnotationDoesntThrowExceptionWhenAtSignIsNotFollowedByIdentifier

@group DCOM-41

File

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

Class

DocParserTest

Namespace

Doctrine\Tests\Common\Annotations

Code

public function testAnnotationDoesntThrowExceptionWhenAtSignIsNotFollowedByIdentifier() {
  $parser = new DocParser();
  $result = $parser
    ->parse("'@'");
  $this
    ->assertEquals(0, count($result));
}