Hello,
it is normal that for a simple Servlet test  taking about 20-30 seconds to
testing?
I'm using cactus from eclipse to a remote (Lan connection) linux tomcat.
Thnx in advance for helping!
kimbuba.

//I'm testing a simple method that insert an attribute on a request.

public void testSetRequest(){
//Initialize class to test
HelloAction servlet = new HelloAction();

// Call the method to test, passing an HttpServletRequest object
servlet.setName("BOB",(HttpServletRequest)request);

// Perform verification that test was successful
assertEquals("BOB", (String)request.getAttribute("aName"));
}





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

Reply via email to