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