View Javadoc
1   /**
2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3    */
4   package net.sourceforge.pmd.lang.java.rule.typeresolution;
5   
6   import net.sourceforge.pmd.testframework.SimpleAggregatorTst;
7   
8   public class CloneMethodMustImplementCloneableTest extends SimpleAggregatorTst {
9       private static final String RULESET = "java-typeresolution";
10  
11      @Override
12      public void setUp() {
13          addRule(RULESET, "CloneMethodMustImplementCloneable");
14      }
15  }