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 UseNotifyAllInsteadOfNotifyTest extends SimpleAggregatorTst {
10  
11      private Rule rule;
12  
13      public void setUp() throws RuleSetNotFoundException {
14          rule = findRule("design", "UseNotifyAllInsteadOfNotify");
15      }
16  
17      public void testAll() {
18          runTests(new TestDescriptor[]{
19              new TestDescriptor(TEST1, "TEST1", 1, rule),
20              new TestDescriptor(TEST2, "TEST2", 2, rule),
21              new TestDescriptor(TEST3, "TEST3", 1, rule),
22              new TestDescriptor(TEST4, "TEST4", 1, rule),
23              new TestDescriptor(TEST5, "TEST5", 1, rule),
24              new TestDescriptor(TEST6, "notify() with params is OK", 0, rule),
25          });
26      }
27  
28      private static final String TEST1 =
29              "public class Foo {" + PMD.EOL +
30              " void foo () {" + PMD.EOL +
31              " foo.notify();" + PMD.EOL +
32              "}" + PMD.EOL +
33              "}";
34  
35      private static final String TEST2 =
36              "public class Foo {" + PMD.EOL +
37              " void foo () {" + PMD.EOL +
38              " foo.notify();" + PMD.EOL +
39              " foo.notify();" + PMD.EOL +
40              "}" + PMD.EOL +
41              "}";
42  
43      private static final String TEST3 =
44              "public class Foo {" + PMD.EOL +
45              " void foo () {" + PMD.EOL +
46              " notify();" + PMD.EOL +
47              "}" + PMD.EOL +
48              "}";
49  
50      private static final String TEST4 =
51              "public class Foo {" + PMD.EOL +
52              " void foo () {" + PMD.EOL +
53              " super.notify();" + PMD.EOL +
54              "}" + PMD.EOL +
55              "}";
56  
57      private static final String TEST5 =
58              "public class Foo {" + PMD.EOL +
59              " void foo () {" + PMD.EOL +
60              " new Object().notify();" + PMD.EOL +
61              "}" + PMD.EOL +
62              "}";
63  
64      private static final String TEST6 =
65              "public class Foo {" + PMD.EOL +
66              " void foo (int x) {" + PMD.EOL +
67              " foo.notify(x);" + PMD.EOL +
68              "}" + PMD.EOL +
69              "}";
70  
71  }