>>Unit Testing---I've used JUnit and SUnit quite a bit with good
results, but
>>for servlet and other web work we'll need something to augment those test
>>fixtures. On the Apache site I saw references to both HTTPUnit and
>>something called 'Cactus', and I wanted to know if anyone has experience
>>with those or other test setups that accommodate web development.
For unit testing it is best if we use Cactus to unit test (
http://jakarta.apache.org/cactus/index.html ) and HTTPUnit for the
Aceptance Test ( http://httpunit.sourceforge.net/ ). These two tools
provide for a very robust testing environment.
If you need to learn about unit testing with Junit ( http://junit.org/ )
(the framework upon which Cactus is built upon) then I stongly suggest
that you work your way through the Junit Cookbook at
http://junit.sourceforge.net/doc/cookbook/cookbook.htm
-H
|