2010/10/7 Greg Akins <[email protected]>: > On Thu, Oct 7, 2010 at 9:37 AM, Antonio Petrelli > <[email protected]> wrote: > >> Just to be clear, Tiles test webapp uses the "selenese" goal that runs >> HTML Selenese tests, as you wanted. >> Notice that JUnit suggestion is only valid if you are using pure Java >> commands, using Selenium RC. >> In case of Tiles test webapp, Surefire is configured to run >> integration tests (not unit tests), however I suggest using Failsafe >> for this purpose. >> > > Thanks for clarifying that. I'm not familiar with Failsafe, is it > used instead of Surefire, or in addition to Surefire?
In addition. Failsafe[1] focuses on integration testing, Surefire on unit testing. Those are different Maven phases. About functionality, they are basically the same. IOW you run unit tests and, after they pass, run integration tests (with container start/stop and other needed stuff). Antonio [1] http://maven.apache.org/plugins/maven-failsafe-plugin/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
