Skip to content

Commit

Permalink
Fix test case pattern.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Mar 16, 2023
1 parent 3a0ed1f commit 06cc495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/pmd-configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<rule ref="category/java/codestyle.xml/ClassNamingConventions">
<properties>
<property name="utilityClassPattern" value="[A-Z][a-zA-Z0-9]+"/>
<property name="testClassPattern" value="^Test.*$|^Benchmark.*$|"/>
<property name="testClassPattern" value="^[A-Z][a-zA-Z0-9]+Test.*$|^[A-Z][a-zA-Z0-9]+Benchmark.*$|"/>
</properties>
</rule>
<rule ref="category/java/codestyle.xml/LinguisticNaming">
Expand Down

0 comments on commit 06cc495

Please sign in to comment.