RE: Cactus vs StrutsTestCase

2004-01-18 Thread Richard Hightower
. -Original Message- From: Bryce Fischer [mailto:[EMAIL PROTECTED] Sent: Sunday, January 18, 2004 6:01 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: Cactus vs StrutsTestCase I agree. There are two frameworks I've seen to test struts based web stuff. The easiest t

RE: Cactus vs StrutsTestCase

2004-01-18 Thread Richard Hightower
ginal Message- From: Ashikuzzaman [mailto:[EMAIL PROTECTED] Sent: Saturday, January 17, 2004 8:51 AM To: [EMAIL PROTECTED] Subject: Cactus vs StrutsTestCase My new project is going to use Struts, Hibernate, XDoclets, Ant etc. together in a Debian O/S plus Oracle backend. For that project we

RE: Cactus vs StrutsTestCase

2004-01-18 Thread Ashikuzzaman
ginal Message- From: Bryce Fischer [mailto:[EMAIL PROTECTED] Sent: Sunday, January 18, 2004 7:01 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: Cactus vs StrutsTestCase I agree. There are two frameworks I've seen to test struts based web stuff. The easiest to use is Stru

RE: Cactus vs StrutsTestCase

2004-01-18 Thread Ashikuzzaman
ailto:[EMAIL PROTECTED] Sent: Sunday, January 18, 2004 11:18 AM To: Struts Users Mailing List Subject: Re: Cactus vs StrutsTestCase Hi, Ashikuzzaman I use StrutsTestCase to test my struts-based web tier action. Because StrutsTestCase use mock object to mock the container. So you needn&#x

RE: RE: Cactus vs StrutsTestCase

2004-01-18 Thread Ashikuzzaman
Matt, Thank you very much for your valuable inputs. I talked about AppFuse with my architect 1 week back. Its pretty cool and he agreed with me that it would be the perfect choice for us if we found it earlier. But the project is on the meadway where we have developed a working (though inconsist

Re: Cactus vs StrutsTestCase

2004-01-18 Thread Bryce Fischer
I agree. There are two frameworks I've seen to test struts based web stuff. The easiest to use is StrutsTestCase (the other is mockrunner). It can use both a Mock container as well as Cactus. I haven't gotten around to using the CactusTestCase, as I do most of my unit testing without the overhead

Re: Cactus vs StrutsTestCase

2004-01-17 Thread Ryan Zheng
Hi, Ashikuzzaman! I use StrutsTestCase to test my struts-based web tier action. Because StrutsTestCase use mock object to mock the container. So you needn't start your container(tomcat or jboss) to test your action class. It's a very fast way to test. However, StrutsTestCase can

RE: Cactus vs StrutsTestCase

2004-01-17 Thread Matt Raible
17, 2004 8:51 AM > To: [EMAIL PROTECTED] > Subject: Cactus vs StrutsTestCase > > > My new project is going to use Struts, Hibernate, XDoclets, > Ant etc. together in a Debian O/S plus Oracle backend. For > that project we found that there are two primary testing > strategies us

Cactus vs StrutsTestCase

2004-01-17 Thread Ashikuzzaman
My new project is going to use Struts, Hibernate, XDoclets, Ant etc. together in a Debian O/S plus Oracle backend. For that project we found that there are two primary testing strategies used in server-side testing: mock object (MO) and in-container (IC). I got a look of what is what but would like