Merge pull request #12909 from eugenp/JAVA-14549

JAVA-14549 update pmd rule
This commit is contained in:
Loredana Crusoveanu 2022-10-24 10:49:39 +03:00 committed by GitHub
commit 735bc79b0e
1 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,10 @@
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
<description>Baeldung custom PMD rules</description>
<rule name="UnitTestMustFollowNamingConventionRule" message="Unit test class names need to end in 'UnitTest', integration tests with 'IntegrationTest', etc " class="org.baeldung.pmd.UnitTestNamingConventionRule">
<rule name="UnitTestMustFollowNamingConventionRule"
message="Unit test class names need to end in 'UnitTest', integration tests with 'IntegrationTest', etc "
class="org.baeldung.pmd.UnitTestNamingConventionRule"
language="java">
<description>Test does not follow Baeldung naming convention</description>
<priority>3</priority>
</rule>