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 }); 25 } 26 27 private static final String TEST1 = 28 "public class Foo {" + PMD.EOL + 29 " void foo () {" + PMD.EOL + 30 " foo.notify();" + PMD.EOL + 31 "}" + PMD.EOL + 32 "}"; 33 34 private static final String TEST2 = 35 "public class Foo {" + PMD.EOL + 36 " void foo () {" + PMD.EOL + 37 " foo.notify();" + PMD.EOL + 38 " foo.notify();" + PMD.EOL + 39 "}" + PMD.EOL + 40 "}"; 41 42 private static final String TEST3 = 43 "public class Foo {" + PMD.EOL + 44 " void foo () {" + PMD.EOL + 45 " notify();" + PMD.EOL + 46 "}" + PMD.EOL + 47 "}"; 48 49 private static final String TEST4 = 50 "public class Foo {" + PMD.EOL + 51 " void foo () {" + PMD.EOL + 52 " super.notify();" + PMD.EOL + 53 "}" + PMD.EOL + 54 "}"; 55 56 private static final String TEST5 = 57 "public class Foo {" + PMD.EOL + 58 " void foo () {" + PMD.EOL + 59 " new Object().notify();" + PMD.EOL + 60 "}" + PMD.EOL + 61 "}"; 62 63 }