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