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