私は純粋な JUnit 4 テストを使用しており、クラスパスに属するいくつかの jar 内でそれらをコンパイルしています。クラスパスですべてのテストを実行したいと思います。
方法はありますか?
私のタスクは次のようになります。
<target name="test" description="All the tests">
<junit fork="yes">
<classpath>
<path refid="test.classpath" />
<fileset dir="war/WEB-INF/lib/">
<include name="*.jar"/>
</fileset>
<fileset dir="war/WEB-INF"/>
<fileset dir="war"/>
</classpath>
<formatter type="plain" usefile="false" />
</junit>
</target>