Re: executing test methods more than once.
"Dheerendra Kulkarni" <[email protected]> Sat, 2 Aug 2008 11:43:07 +0530
| Newsgroups | gmane.comp.jakarta.cactus.user |
|---|---|
| Message-ID | <[email protected]> |
Better than looping is add this tescase 3 times without the loop in a testsuite and run the suite regards, Dheerendra On Fri, Aug 1, 2008 at 10:03 PM, Paul Kiruvanayagam <[email protected]> wrote: > Hi > > I would like to submit the same request to the server more than once (i.e. > execute the same test), however it is only returning a partial xml response > which is causing me an issue in the endXXX method as I am doing validation > there. > > Currently I am just executing the following code > > try { > for(int i=1; i<=3; i++) { > Servlet servlet = new Servlet(); > servlet.doPost(request, response); > System.out.println("Done testStayGameRequest " + i); > } > > How can I achieve the what I want without creating 3 separate test methods > to execute the same request against the server multiple times? I am really > only interested in the final reponse. > > thanks > > Paul > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >