Skip to content

Commit

Permalink
Ignore all PHPUnit annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
jrjohnson committed Mar 10, 2019
1 parent ee9987e commit 7ccffb7
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions lib/Doctrine/Annotations/ImplicitlyIgnoredAnnotationNames.php
Expand Up @@ -83,9 +83,39 @@ final class ImplicitlyIgnoredAnnotationNames
];

private const PHPUnit = [
'codeCoverageIgnore' => true,
'codeCoverageIgnoreEnd' => true,
'codeCoverageIgnoreStart' => true,
'author' => true,
'after' => true,
'afterClass' => true,
'backupGlobals' => true,
'backupStaticAttributes' => true,
'before' => true,
'beforeClass' => true,
'codeCoverageIgnore' => true,
'codeCoverageIgnoreStart' => true,
'codeCoverageIgnoreEnd' => true,
'covers' => true,
'coversDefaultClass' => true,
'coversNothing' => true,
'dataProvider' => true,
'depends' => true,
'doesNotPerformAssertions' => true,
'expectedException' => true,
'expectedExceptionCode' => true,
'expectedExceptionMessage' => true,
'expectedExceptionMessageRegExp' => true,
'group' => true,
'large' => true,
'medium' => true,
'preserveGlobalState' => true,
'requires' => true,
'runTestsInSeparateProcesses' => true,
'runInSeparateProcess' => true,
'small' => true,
'test' => true,
'testdox' => true,
'testWith' => true,
'ticket' => true,
'uses' => true,
];

private const PhpCheckStyle = [
Expand Down

0 comments on commit 7ccffb7

Please sign in to comment.