TestNGEE
Run TestNG tests inside servlet container. Great for integration tests
It's common for integration tests to use the entire JEE stack resources. By running your tests inside the target JEE container (instead of emulating the container resources), you will test the real thing.
During our projects, we already detected problems during regression tests caused by a fix that was applied to our Websphere Application Server (in one version the classloader worked in one way, them it changed!).
For using it, create a web project and copy the contents from our...