removed, since this is a dupe of NoScriptletsTest

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@4801 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Wouter Zelle
2006-11-16 19:00:05 +00:00
parent 70a48fbda7
commit b2ef53f5d8

View File

@ -1,34 +0,0 @@
package test.net.sourceforge.pmd.jsp.rules;
import net.sourceforge.pmd.Rule;
import net.sourceforge.pmd.RuleSetFactory;
import net.sourceforge.pmd.RuleSetNotFoundException;
import net.sourceforge.pmd.SourceType;
import test.net.sourceforge.pmd.testframework.SimpleAggregatorTst;
import test.net.sourceforge.pmd.testframework.TestDescriptor;
public class NoScriptlets extends SimpleAggregatorTst {
public void testAll() throws RuleSetNotFoundException {
Rule rule = new RuleSetFactory()
.createSingleRuleSet("rulesets/basic-jsp.xml").getRuleByName("NoScriptlets");
runTests(new TestDescriptor[]{
new TestDescriptor(VIOLATION1, "Two scriptlets.", 2, rule),
new TestDescriptor(NO_VIOLATION1, "No scriptlets.", 0, rule),
}, SourceType.JSP);
}
private static final String VIOLATION1 =
"<HTML>" +
"<HEAD>" +
"<% response.setHeader(\"Pragma\", \"No-cache\"); %>" +
"</HEAD>" +
"<BODY>" +
" <jsp:scriptlet>String title = \"Hello world!\";</jsp:scriptlet>" +
"</BODY>" +
"</HTML>";
private static final String NO_VIOLATION1 =
"<html><body><p>text</p></body></html>";
}