On 16 Apr, [EMAIL PROTECTED] wrote:
> Hi
> 
> I have a test servlet , which does the following:
> 
> 1. In the setup method, i am instantiating the actual servlet to be tested.
> 2. In the test method, i am calling the servlet's doGet method, which is to
> be tested. doGet method in the actual servlet accepts two parameters as
> part of the Query String. (thru getAttribute).
> 
> My question is, how can I set this in my test method before calling the
> doGet method.
> 

I think this is the correct way:

public void beginDoGet(WebRequest theRequest) {
        theRequest.setURL("localhost:8080", "/servletcontext",
        "/YourTestServlet", null, "param1=foo,param2=bar");
}   

L

-- 
Laurent Duperval <mailto:[EMAIL PROTECTED]>

People have one thing in common--they are all different.



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to