1   package test.net.sourceforge.pmd.rules;
2   
3   import net.sourceforge.pmd.PMD;
4   import net.sourceforge.pmd.Rule;
5   import net.sourceforge.pmd.RuleSetNotFoundException;
6   import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;
7   import test.net.sourceforge.pmd.testframework.TestDescriptor;
8   
9   public class AvoidDollarSignsRuleTest extends SimpleAggregatorTst {
10  
11      private Rule rule;
12  
13      public void setUp() throws RuleSetNotFoundException {
14          rule = findRule("rulesets/naming.xml", "AvoidDollarSigns");
15      }
16  
17      public void testAll() {
18         runTests(new TestDescriptor[] {
19             new TestDescriptor(TEST1, "class Fo$o", 1, rule),
20             new TestDescriptor(TEST2, "variable fo$oo", 1, rule),
21             new TestDescriptor(TEST3, "method foo$oo", 1, rule),
22             new TestDescriptor(TEST4, "interface fo$oo", 1, rule),
23             new TestDescriptor(TEST5, "ok", 0, rule),
24         });
25      }
26  
27      private static final String TEST1 =
28      "public class F$oo {}";
29  
30      private static final String TEST2 =
31      "public class Foo {" + PMD.EOL +
32      " int fo$o;" + PMD.EOL +
33      "}";
34  
35      private static final String TEST3 =
36      "public class Foo {" + PMD.EOL +
37      " void fo$o() {}" + PMD.EOL +
38      "}";
39  
40      private static final String TEST4 =
41      "public interface Foo$oo {}";
42  
43      private static final String TEST5 =
44      "public class Foo {" + PMD.EOL +
45      " void foo() {}" + PMD.EOL +
46      " int buz;" + PMD.EOL +
47      "}" + PMD.EOL +
48      "public interface Baz {} ";
49  
50  }