> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Jeff Schnitzer
> Sent: Friday, January 05, 2001 6:22 PM
> To: Orion-Interest
> Subject: RE: Question about automated testing with Orion
>
>
> Out of curiosity, why do you have so much logic in servlets that you
> need to test them? Is your page transition logic that complicated?
Because most of our application runs as servlets. I don't know what page
transition logic is.
>
> I have found that by keeping all my business logic in session beans
> (which are tested with JUnitEE, http://www.infohazard.org/junitee), my
> servlets/JSPs stay pretty much paper-thin. Simple functional testing is
> all that is required, mostly just to make sure that the html looks good.
>
> Or maybe I'm missing something. What are you trying to accomplish with
> your tests?
Automated testing of the application. It doesn't matter if the logic is in
beans or servlets, I just need a way to test it.