Re: Writing test suites

2015-06-02 Thread Aljoscha Krettek
Hi, the difference is that the IT (Integration Test) suites are only run when "mvn verify" or "mvn install" is executed. The other suites (or tests) are ran when "mvn test" is executed. Typically the non-IT tests are more lightweight while the IT tests can do heavy stuff that takes a bit longer. W

Writing test suites

2015-06-02 Thread Sachin Goel
Hi What's the convention with using an "ITSuite" in the name instead of just "Suite"? Regards Sachin Goel