1
2
3
4 package net.sourceforge.pmd.lang.ecmascript.rule.unnecessary;
5
6 import net.sourceforge.pmd.testframework.SimpleAggregatorTst;
7
8 import org.junit.Before;
9
10
11 public class UnnecessaryRulesTest extends SimpleAggregatorTst {
12
13 private static final String RULESET = "ecmascript-unnecessary";
14
15 @Before
16 public void setUp() {
17 addRule(RULESET, "UnnecessaryBlock");
18 addRule(RULESET, "UnnecessaryParentheses");
19 }
20
21 public static junit.framework.Test suite() {
22 return new junit.framework.JUnit4TestAdapter(UnnecessaryRulesTest.class);
23 }
24 }