使用ANT脚本运行JUnit测试,一组测试(TestSCF)是所有测试的子集。这些测试将作为每晚构建的一部分运行并生成报告。使用@IncludeCategory定义需要运行的测试,使用ClasspathSuite定位项目中的所有测试。
示例测试类声明,定义为作为TestSCF子集运行。 TestSCF是一个空接口。
@Category(TestSCF.class)
public class ErrorDialogTest extends TestCase
{
....
}
主要测试套件。
@RunWith(Categories.class)
@IncludeCategory(TestSCF.class)
@SuiteClasses({AllTests.class})
public class SCFTests
{
}
AllTests声明
@RunWith(ClasspathSuite.class)
public class AllTests
{
}
ANT脚本的相关部分
<!-- Run the unit tests -->
<junit showoutput ="true"
printsummary = "yes"
fork = "yes"
timeout = "60000" >
<formatter type="xml"/>
<classpath refid="cpath"/>
<batchtest fork = "yes"
todir = "${test.report.dir}">
<fileset dir="${src.dir}">
<include name="**/SCFTests.java"/>
</fileset>
</batchtest>
</junit>
<!-- Copy the XML files that get deleted by junitreport -->
<mkdir dir="${junit.html.dir}/xml_files"/>
<copy todir="${junit.html.dir}/xml_files" preservelastmodified="true">
<fileset dir="${test.report.dir}">
<include name="*.xml"/>
</fileset>
</copy>
<!-- Format the test results into browsable HTML -->
<junitreport todir="${junit.html.dir}">
<fileset dir="${test.report.dir}">
<include name="TEST-*.xml"/>
</fileset>
<report format="frames" todir="${junit.html.dir}"/>
</junitreport>
问题是Junit报告只显示了一个测试类 - SCFTests。我理解为什么会发生这种情况,但想知道是否有办法为实际测试的每个类生成一个报告,或者是一种方法来将测试类的名称添加到测试结果的“名称”中报告。
例如:
dev.sca.test.ErrorDialogTest 45 Passed, 3 Failures, 0 Errors
而不是
SCFTests 45 Passed, 3 Failures, 0 Errors
答案 0 :(得分:3)
为了将来的参考,我能够通过修改junit-frames.xsl文件,在报告的“名称”列中打印类路径。
在
下<td>
<a name="{@name}"/>
<xsl:choose>
<xsl:when test="boolean($show.class)">
<a href="{concat($class.href, '#', @name)}"><xsl:value-of select="@name"/></a>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@name"/>
</xsl:otherwise>
</xsl:choose>
</td>
变为
<td>
<a name="{@name}"/>
<xsl:choose>
<xsl:when test="boolean($show.class)">
<a href="{concat($class.href, '#', @classname)}"><xsl:value-of select="@classname"/></a>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@classname"/>
</xsl:otherwise>
</xsl:choose>
</td>
结果:
Name Status Type Time(s)
dev.sca.test.ErrorDialogTest Success 1.45
dev.sca.test.SomeOtherTest Success 2.03