i have spring project that consists of a parent and few child projects. the build is maven-based and the continous integration server is hudson.
i need to choose the way the unit tests will run. currently, there are several good and also quite few garbage junit tests. i preffer not to mess with the test packages of the child projects since it would be time-consuming, i am not familiar with all the junits and the last but not least: i'm lazy.
my questions are:
- should i use maven-surefire-plugin and do a heavy cleanup in the test package?
- is it any way to tell hudson (not in pom.xml of the project being built) to run specific unit tests and ignore others?
- should I create some other build - (ant?) and use it for running unit tests on hudson?
- are there any other options good options in the market i am not aware of?
any piece of advice would be appreciated.
aviad