[apex] Convert rule test ApexDoc

This commit is contained in:
Andreas Dangel
2018-10-05 20:43:03 +02:00
parent 1f7c827323
commit fd19cdcb01
2 changed files with 11 additions and 17 deletions

View File

@ -0,0 +1,11 @@
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.apex.rule.documentation;
import net.sourceforge.pmd.testframework.PmdRuleTst;
public class ApexDocTest extends PmdRuleTst {
// no additional unit tests
}

View File

@ -1,17 +0,0 @@
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.apex.rule.documentation;
import net.sourceforge.pmd.testframework.SimpleAggregatorTst;
public class DocumentationRulesTest extends SimpleAggregatorTst {
private static final String RULESET = "category/apex/documentation.xml";
@Override
public void setUp() {
addRule(RULESET, "ApexDoc");
}
}