我知道要从命令行运行junit,你可以这样做:
java org.junit.runner.JUnitCore TestClass1 [...其他测试类...]
但是,我想一起运行许多测试并手动输入“TestClass1 TestClass2 TestClass3 ...”效率低下。
当前我在一个目录中组织所有测试类(其中包含指示包的子目录)。有没有办法可以从命令行运行junit并让它一次执行这些测试类?
感谢。
答案 0 :(得分:5)
基本上有两种方法可以执行此操作:使用shell脚本来收集名称,或者使用ClassPathSuite
在java类路径中搜索与给定模式匹配的所有类。
类路径套件方法对于Java来说更自然。 This SO answer描述了如何最好地使用ClassPathSuite。
shell脚本方法有点笨拙且特定于平台,并且可能会遇到麻烦,具体取决于测试的数量,但如果您因任何原因试图避免使用ClassPathSuite,它将会成功。这个简单的假设每个测试文件都以“Test.java”结尾。
#!/bin/bash
cd your_test_directory_here
find . -name "\*Test.java" \
| sed -e "s/\.java//" -e "s/\//./g" \
| xargs java org.junit.runner.JUnitCore
答案 1 :(得分:1)
我发现我可以编写一个Ant构建文件来实现这一点。以下是build.xml的示例:
<target name="test" description="Execute unit tests">
<junit printsummary="true" failureproperty="junit.failure">
<classpath refid="test.classpath"/>
<!-- If test.entry is defined, run a single test, otherwise run all valid tests -->
<test name="${test.entry}" todir="${test.reports}" if="test.entry"/>
<batchtest todir="tmp/rawtestoutput" unless="test.entry">
<fileset dir="${test.home}">
<include name="**/*Test.java"/>
<exclude name="**/*AbstractTest.java"/>
</fileset>
<formatter type="xml"/>
</batchtest>
<fail if="junit.failure" message="There were test failures."/>
</target>
使用此构建文件,如果要执行单个测试,请运行:
ant -Dtest.entry=YourTestName
如果要批量执行多个测试,请在<batchtest>...</batchtest>
下指定相应的测试
如上例所示。