1 2 package test.net.sourceforge.pmd.jsp.rules; 3 4 import org.junit.Before; 5 6 import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst; 7 8 public class NoClassAttributeTest extends SimpleAggregatorTst { 9 10 @Before 11 public void setUp() { 12 addRule("jsp", "NoClassAttribute"); 13 } 14 15 public static junit.framework.Test suite() { 16 return new junit.framework.JUnit4TestAdapter(NoClassAttributeTest.class); 17 } 18 }