Adding testcase for bug '2225474 - VariableNamingConventions does not work with nonprimitives' however as the underlying rule has been completly rewritten since, this case has been handed properly (or so it seems)... So nothing to fix here.

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@6808 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Romain Pelisse committed 2009-01-28 21:10:09 +00:00
1 parent ec72c6b30b
commit 307997cdc3
1 file changed
+11
@@ -289,4 +289,15 @@ public class Foo {
}
]]></code>
</test-code>
<test-code>
<description><![CDATA[
False - with non primitive fields (Bug 2225474)
]]></description>
<expected-problems>1</expected-problems>
<code><![CDATA[
public class X {
public final static String foo = "3";
}
]]></code>
</test-code>
</test-data>