I need to perform integration tests in my web application for each build.
I currently have a set of JUnit tests that test various parts of an application before it goes into war. Now I need to check if the application is in good shape after it is deployed in a web container.
The application is written using the Spring framework, I read a lot of documents on testing Spring integration, but they all talk about testing integration with databases, etc. I read about Cactus, but the information is also pretty scarce.
Any pointers to good tutorials and source code are welcome.
Details of the software used by the application: Spring 2.5, Hibernate 3.2, Maven 2.2, Tomcat 6.0
Many thanks!
source
share