/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ package net.sourceforge.pmd.lang.vf.rule.security; import net.sourceforge.pmd.testframework.SimpleAggregatorTst; public class SecurityRulesTest extends SimpleAggregatorTst { private static final String RULESET = "vf-security"; @Override public void setUp() { addRule(RULESET, "VfUnescapeEl"); addRule(RULESET, "VfCsrf"); } }