I am switching a project from Ant to Maven. I have my unit tests in the correct location, but for whatever reason the maven surefire plugin only sees about 136 (out of 1136 total) of the tests.
When using Ant, we used the older test suite technique of:
public class GatherTests{
public static Test suite(){
... add tests ...
return testSuite;
}
}
as our runner. I haven't been able to determine how to get this to work using Surefire. I am using junit 3.8.1 with Maven 2.0. Does anyone know if this is possible? One thing I tried is:
-Dtest=GatherTests
with no luck. Many of our tests exist in classes that do not immediately inherit from junit.framework.TestCase, so that may be why surefire is having trouble gathering them. I will go through the logs now to see what it is missing.
Thanks Tim