1   package test.net.sourceforge.pmd.rules.migrating;
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 ReplaceVectorWithListTest extends SimpleAggregatorTst {
10  
11      private Rule rule;
12  
13      public void setUp() throws RuleSetNotFoundException {
14          rule = findRule("migrating", "ReplaceVectorWithList");
15      }
16  
17      public void testAll() {
18          runTests(new TestDescriptor[]{
19              new TestDescriptor(TEST1, "bad, local variable of type Vector", 1, rule),
20              new TestDescriptor(TEST2, "bad, param of type Vector", 1, rule),
21          });
22      }
23  
24      private static final String TEST1 =
25              "public class Foo {" + PMD.EOL +
26              " void bar() {" + PMD.EOL +
27              "  Vector v = new Vector();" + PMD.EOL +
28              " }" + PMD.EOL +
29              "}";
30  
31      private static final String TEST2 =
32              "public class Foo {" + PMD.EOL +
33              " void bar(Vector v) {" + PMD.EOL +
34              " }" + PMD.EOL +
35              "}";
36  }