public function DocParserTest::testAnnotationDontAcceptSingleQuotes

@expectedException Doctrine\Common\Annotations\AnnotationException @expectedExceptionMessage Expected PlainValue, got ''' at position 10.

File

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

Class

DocParserTest

Namespace

Doctrine\Tests\Common\Annotations

Code

public function testAnnotationDontAcceptSingleQuotes() {
  $parser = $this
    ->createTestParser();
  $parser
    ->parse("@Name(foo='bar')");
}