Method Summary |
|
public void | beginPostMethod(WebRequest theRequest) Verify that we can simulate a POST request to a servlet. |
public void | beginReceiveCookie(WebRequest theRequest) Test that it is possible to send back a Cookie and verify it on the
client side. |
public void | beginSendCookie(WebRequest theRequest) Verify that we can simulate a single cookie sent in the HTTP request. |
public void | beginSendHeader(WebRequest theRequest) Verify that we can simulate HTTP headers in the HTTP request. |
public void | beginSendMultipleCookies(WebRequest theRequest) Verify that we can simulate multiple cookies sent in the HTTP request. |
public void | beginSendParams(WebRequest theRequest) Verify that we can simulate HTTP parameters in the HTTP request. |
public void | endReadServletOutputStream(WebResponse theResponse) Verify that we can assert the servlet output stream. |
public void | endReceiveCookie(WebResponse theResponse) Test that it is possible to send back a Cookie and verify it on the
client side. |
public void | endReceiveHeader(WebResponse theResponse) Verify that it is possible to send back a header and verify it on the
client side. |
public void | endRequestDispatcherForward(WebResponse theResponse) Verify that we can use a RequestDispatcher in the class to
test to forward to another page and compare the result sent to the
output stream on the client side. |
public void | endRequestDispatcherInclude(WebResponse theResponse) Verify that we can use a RequestDispatcher in the class to
test to include another page and compare the result sent to the
output stream on the client side. |
public void | testGetMethod() Verify that we can simulate a GET request to a servlet. |
public void | testPostMethod() Verify that we can simulate a POST request to a servlet. |
public void | testReadServletOutputStream() Verify that we can assert the servlet output stream. |
public void | testReceiveCookie() Test that it is possible to send back a Cookie and verify it on the
client side. |
public void | testReceiveHeader() Verify that it is possible to send back a header and verify it on the
client side. |
public void | testRequestDispatcherForward() Verify that we can use a RequestDispatcher in the class to
test to forward to another page and compare the result sent to the
output stream on the client side. |
public void | testRequestDispatcherInclude() Verify that we can use a RequestDispatcher in the class to
test to include another page and compare the result sent to the
output stream on the client side. |
public void | testSendCookie() Verify that we can simulate a single cookie sent in the HTTP request. |
public void | testSendHeader() Verify that we can simulate HTTP headers in the HTTP request. |
public void | testSendMultipleCookies() Verify that we can simulate multiple cookies sent in the HTTP request. |
public void | testSendParams() Verify that we can send several parameters in the HTTP request. |
public void | testSetAttribute() Verify that by default the session implicit object is available and can
be used. |
public void | testSetRequestAttribute() Verify that we can set an attribute in the request. |