public void doTest(String jspName) throws Exception {
WebRequest request = new GetMethodWebRequest(jspName);
WebResponse response = null;
try
{
response = runner.getResponse(request);
fail("Should have thrown an exception, its invalid to have sort=full when partialList=true");
}
catch (Throwable t)
{
}
if (log.isDebugEnabled() && response != null)
{
log.debug("RESPONSE: " + response.getText());
}
}
Verifies that the generated page contains the pagination links with the inupt parameter. Tests #917200 ("{}" in
parameters). |