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 org.junit.Before;
7
8 import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;
9
10 public class ScratchpadRulesTest extends SimpleAggregatorTst {
11
12 @Before
13 public void setUp() {
14 //addRule("scratchpad", "rulename");
15 }
16
17 public static junit.framework.Test suite() {
18 return new junit.framework.JUnit4TestAdapter(ScratchpadRulesTest.class);
19 }
20
21 }