许多工具生成并使用单元测试报告相同的
XML文件格式.
示例(source):
<?xml version="1.0" encoding="UTF-8" ?> <testsuite errors="0" failures="0" hostname="hazelnut.osuosl.org" name="net.cars.engine.MoteurTest" tests="6" time="0.021" timestamp="2007-11-02T23:13:50"> <properties> <property name="java.vendor" value="IBM Corporation" /> <property name="os.name" value="Linux" /> <!-- more property tags--> </properties> <testcase classname="net.cars.engine.MoteurTest" name="hasBougie" time="0.0010" /> <testcase classname="net.cars.engine.MoteurTest" name="hasCarburatueur" time="0.0010" /> <!-- more testcase tags--> <system-out><![CDATA[]]></system-out> <system-err><![CDATA[]]></system-err> </testsuite>
经过一番调查,我发现格式是由apache基础(由ant项目)提出的.
由…生产:
junit蚂蚁任务
> antunit
maven surefire
> testng
> …
消费者:
junitreport蚂蚁任务
maven surefire-reports
>巡航控制
> Luntbuild
竹子
哈德森/jenkins
> IntelliJ TeamCity
> AntHill
> Parabuild
> JUnit PDF报告
> …
唯一可以找到的文件就是这个蚂蚁wiki页面:
Proposals/EnhancedTestReports
有没有这种格式的规格(DTD,XSD)?
我想从手写一个这样的文件…(或者如果你知道的话也可以使用librairy)…
此页面
http://windyroad.org/2011/02/07/apache-ant-junit-xml-schema/表明,JUnit测试报告的XML模式在这里是
http://windyroad.org/dl/Open%20Source/JUnit.xsd
原文链接:https://www.f2er.com/xml/292234.html该模式的结构似乎与您给出的示例相匹配.