Re: How do I separate UTs and ITs directory?

2016-06-24 Thread Oliver B. Fischer
In our current projects we have separate Maven modules for integration tests and for component tests. Futhermore all our component tests must end with CT and all integration tests must end with IT. We also ensure that all tests (unit tests, integration tests, component tests) will be always

Re: How do I separate UTs and ITs directory?

2016-06-24 Thread John Patrick
I've also used the separate module for integration tests before. I've also used junit categories and testng groups before. Some places I've worked prefer seperate modules over categories/groups. Usually I put selenium or cucumber tests in separate modules and also have groups groups as well.

Re: How do I separate UTs and ITs directory?

2016-06-24 Thread Karl Heinz Marbaise
Hi, On 6/24/16 10:58 AM, zuxiong lin wrote: Hi. maven devs. According to http://maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion.html , the Failsafe Plugin will automatically identify the wildcard patterns : "**/IT*.java" .. "**/*IT.java" But how do I separate UTs

How do I separate UTs and ITs directory?

2016-06-24 Thread zuxiong lin
Hi. maven devs. According to http://maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion.html , the Failsafe Plugin will automatically identify the wildcard patterns : "**/IT*.java" .. "**/*IT.java" But how do I separate UTs and ITs directory with