Suppose you have a test directory that contains packages each of which contains jUnit tests.
In this setup, using ANT, how would you "run all tests?"
Assuming my jUnit has
<target name="test" depends="compileTest">
<junit fork="yes" printsummary="yes" haltonfailure="no">
<classpath location="${bin}" />
<formatter type="plain" />
<test name="_com.??.project.alltests.MyTests" />
</junit>
</target>
Where, MyTests has
@RunWith(Suite.class)
@Suite.SuiteClasses( { _ThisTest.class, _ThatTest.class })
public class OCTTests {
}
and _ThisTest itself contains some tests ..
Is it possible for the purposes of ANT script to avoid this ans simply say "Run all Tests you find in this directory"