Writing test suites

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Writing test suites

Sachin Goel
Hi
What's the convention with using an "ITSuite" in the name instead of just
"Suite"?

Regards
Sachin Goel
Reply | Threaded
Open this post in threaded view
|

Re: Writing test suites

Aljoscha Krettek-2
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.

When the ITCases or ITSuites are executed the normal tests are also executed.

Cheers,
Aljoscha

On Tue, Jun 2, 2015 at 5:50 PM, Sachin Goel <[hidden email]> wrote:
> Hi
> What's the convention with using an "ITSuite" in the name instead of just
> "Suite"?
>
> Regards
> Sachin Goel