View Javadoc

1   /**
2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3    */
4   package net.sourceforge.pmd.lang.xml.rule.basic;
5   
6   import net.sourceforge.pmd.testframework.SimpleAggregatorTst;
7   
8   import org.junit.Before;
9   
10  
11  public class BasicRulesTest extends SimpleAggregatorTst {
12      
13      private static final String RULESET = "xml-basic";
14  
15      @Before
16      public void setUp() {
17          addRule(RULESET, "MistypedCDATASection");
18      }
19  
20      public static junit.framework.Test suite() {
21          return new junit.framework.JUnit4TestAdapter(BasicRulesTest.class);
22      }
23  }