Ho una directory con una serie di test JUnit nel mio progetto. Finora ho usato un target separato per ogni unit test. Ad esempio:Esegui tutti i test unitari con Ant builder
<target name="MyTest">
<mkdir dir="${junit.output.dir}"/>
<junit fork="yes" printsummary="withOutAndErr">
<formatter type="xml"/>
<test name="tests.MyTest" todir="${junit.output.dir}"/>
<classpath refid="MyProject.classpath"/>
</junit>
</target>
Questo metodo mi richiede di cambiare il file di build ogni volta che aggiungo un test di unità.
Voglio riuscire a eseguire tutti i test di unità nel progetto con un singolo target di build Ant.
È possibile fare?