1   /***
2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3   */
4   package test.net.sourceforge.pmd.rules;
5   
6   import net.sourceforge.pmd.PMD;
7   import net.sourceforge.pmd.Rule;
8   import net.sourceforge.pmd.RuleSetNotFoundException;
9   import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;
10  import test.net.sourceforge.pmd.testframework.TestDescriptor;
11  
12  public class ShortMethodNameTest extends SimpleAggregatorTst {
13  
14      private Rule rule;
15  
16      public void setUp() throws RuleSetNotFoundException {
17          rule = findRule("naming", "ShortMethodName");
18      }
19  
20      public void testAll() {
21         runTests(new TestDescriptor[] {
22             new TestDescriptor(TEST1, "ok", 0, rule),
23             new TestDescriptor(TEST2, "bad", 1, rule),
24             new TestDescriptor(TEST3, "2 violations", 2, rule),
25             new TestDescriptor(TEST4, "2 methods, 1 violation", 1, rule),
26         });
27      }
28  
29      private static final String TEST1 =
30      "public class ShortMethodName0 {" + PMD.EOL +
31      "    public int abcd( int i ) {" + PMD.EOL +
32      "       // Should not violate." + PMD.EOL +
33      "    }" + PMD.EOL +
34      "}";
35  
36      private static final String TEST2 =
37      "public class ShortMethodName1 {" + PMD.EOL +
38      "    public int a( int i ) {" + PMD.EOL +
39      "       // Should violate." + PMD.EOL +
40      "    }" + PMD.EOL +
41      "}";
42  
43      private static final String TEST3 =
44      "public class ShortMethodName2 {" + PMD.EOL +
45      "    public int a( int i ) {" + PMD.EOL +
46      "       // Should violate" + PMD.EOL +
47      "    }" + PMD.EOL +
48      "" + PMD.EOL +
49      "    public int b( int i ) {" + PMD.EOL +
50      "       // Should violate" + PMD.EOL +
51      "    }" + PMD.EOL +
52      "}";
53  
54      private static final String TEST4 =
55      "public class ShortMethodName3 {" + PMD.EOL +
56      "    public int a( int i ) {" + PMD.EOL +
57      "       // Should violate" + PMD.EOL +
58      "    }" + PMD.EOL +
59      "" + PMD.EOL +
60      "    public int bcde( int i ) {" + PMD.EOL +
61      "       // Should not violate" + PMD.EOL +
62      "    }" + PMD.EOL +
63      "}";
64  
65  }