Seems to me that you're creating work for yourself by running tests individually.
This is my standard test target:
<target name="test" depends="compile" description="Run unit tests">
<mkdir dir="${build.dir}/tests"/>
<junit printsummary="yes" haltonfailure="${junit.haltonfailure}">
<classpath>
<path refid="runtime.path"/>
<pathelement path="${classes.dir}"/>
</classpath>
<formatter type="plain"/>
<batchtest fork="yes" todir="${build.dir}/tests">
<fileset dir="${src.dir}" includes="**/*Test*.java"/>
</batchtest>
</junit>
</target>
Runs the tests in my "src" directory, generating a consolidated report for all tests.
Update
Tests taking too long to run is a very common problem. The standard answer is to refactor your tests to make them go faster..... :-(
Opinions vary, but in my experience the best solution is divide your tests into different categories.
- Unit tests (mocked, so should run fast and covers all features)
- fast integration tests
- slow integration tests.
I run unit tests as part of my build and the integration tests as separate Jenkins jobs (post-deployment). This addresses my need for immediate feedback and divides my test reporting into 3 categories, rather than forcing me to track each individual test.
Another argument against individual testing is that in a large team you don't see the effect your changes have on other parts of the codebase. It's a team effort after all :-)