01: package test.net.sourceforge.pmd.jsp.rules;
02:
03: import org.junit.Before;
04:
05: import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;
06:
07: public class DuplicateJspImportTest extends SimpleAggregatorTst {
08:
09: @Before
10: public void setUp() {
11: addRule("jsp", "DuplicateJspImports");
12: }
13:
14: public static junit.framework.Test suite() {
15: return new junit.framework.JUnit4TestAdapter(
16: DuplicateJspImportTest.class);
17: }
18: }
|