forked from phoedos/pmd
Fix PR comments
This commit is contained in:
@ -67,15 +67,37 @@ public class Foo {
|
|||||||
</test-code>
|
</test-code>
|
||||||
|
|
||||||
<test-code>
|
<test-code>
|
||||||
<description>#1573 method names should not contain underscores, but skip test methods</description>
|
<description>#1573 method names should not contain underscores, but skip test methods 1</description>
|
||||||
<expected-problems>0</expected-problems>
|
<expected-problems>0</expected-problems>
|
||||||
<rule-property name="skipTestMethodUnderscores">true</rule-property>
|
<rule-property name="skipTestMethodUnderscores">true</rule-property>
|
||||||
<code><![CDATA[
|
<code><![CDATA[
|
||||||
public class Foo {
|
public class Foo {
|
||||||
@isTest
|
@isTest
|
||||||
void test_barFoo() {}
|
void test_barFoo() {}
|
||||||
}
|
}
|
||||||
]]></code>
|
]]></code>
|
||||||
</test-code>
|
</test-code>
|
||||||
|
|
||||||
|
<test-code>
|
||||||
|
<description>#1573 method names should not contain underscores, but skip test methods 2</description>
|
||||||
|
<expected-problems>0</expected-problems>
|
||||||
|
<rule-property name="skipTestMethodUnderscores">true</rule-property>
|
||||||
|
<code><![CDATA[
|
||||||
|
public class Foo {
|
||||||
|
void testMethod test_barFoo() {}
|
||||||
|
}
|
||||||
|
]]></code>
|
||||||
|
</test-code>
|
||||||
|
|
||||||
|
<test-code>
|
||||||
|
<description>#1573 method names should not contain underscores, but skip test methods 3</description>
|
||||||
|
<expected-problems>1</expected-problems>
|
||||||
|
<rule-property name="skipTestMethodUnderscores">false</rule-property>
|
||||||
|
<code><![CDATA[
|
||||||
|
public class Foo {
|
||||||
|
@isTest
|
||||||
|
void test_barFoo() {}
|
||||||
|
}
|
||||||
|
]]></code>
|
||||||
|
</test-code>
|
||||||
</test-data>
|
</test-data>
|
||||||
|
Reference in New Issue
Block a user