public function DocParserTest::createTestParser in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php \Drupal\Tests\Component\Annotation\Doctrine\DocParserTest::createTestParser()
- 10 core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php \Drupal\Tests\Component\Annotation\Doctrine\DocParserTest::createTestParser()
40 calls to DocParserTest::createTestParser()
- DocParserTest::testAnnotationDontAcceptSingleQuotes in core/
tests/ Drupal/ Tests/ Component/ Annotation/ Doctrine/ DocParserTest.php - DocParserTest::testAnnotationEnumeratorException in core/
tests/ Drupal/ Tests/ Component/ Annotation/ Doctrine/ DocParserTest.php - DocParserTest::testAnnotationEnumeratorLiteralException in core/
tests/ Drupal/ Tests/ Component/ Annotation/ Doctrine/ DocParserTest.php - DocParserTest::testAnnotationEnumInvalidLiteralDeclarationException in core/
tests/ Drupal/ Tests/ Component/ Annotation/ Doctrine/ DocParserTest.php - DocParserTest::testAnnotationEnumInvalidTypeDeclarationException in core/
tests/ Drupal/ Tests/ Component/ Annotation/ Doctrine/ DocParserTest.php
File
- core/
tests/ Drupal/ Tests/ Component/ Annotation/ Doctrine/ DocParserTest.php, line 1069
Class
- DocParserTest
- @coversDefaultClass \Drupal\Component\Annotation\Doctrine\DocParser
Namespace
Drupal\Tests\Component\Annotation\DoctrineCode
public function createTestParser() {
$parser = new DocParser();
$parser
->setIgnoreNotImportedAnnotations(true);
$parser
->setImports(array(
'name' => 'Drupal\\Tests\\Component\\Annotation\\Doctrine\\Name',
'__NAMESPACE__' => 'Drupal\\Tests\\Component\\Annotation\\Doctrine',
));
return $parser;
}