1 package test.net.sourceforge.pmd.jsp.rules; 2 3 import net.sourceforge.pmd.Rule; 4 import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst; 5 6 public class NoInlineStyleInformationTest extends SimpleAggregatorTst { 7 private Rule rule; 8 9 public void setUp() { 10 rule = findRule("jsp", "NoInlineStyleInformation"); 11 } 12 13 public void testAll() { 14 runTests(rule); 15 } 16 }