在哪里可以找到 JUnit 的 XML 输出规范。我的目标是编写一个生成类似 JUnit 的输出的 UnitTest++ XML 报告器。
请参阅:“无法让 hudson 解析 JUnit 测试输出 XML ”和“ Hudson、C++ 和 UnitTest++ ”
在哪里可以找到 JUnit 的 XML 输出规范。我的目标是编写一个生成类似 JUnit 的输出的 UnitTest++ XML 报告器。
请参阅:“无法让 hudson 解析 JUnit 测试输出 XML ”和“ Hudson、C++ 和 UnitTest++ ”
您可以在https://github.com/windyroad/JUnit-Schema找到基于 Apache Ant 1.8.2 中的代码的 XSD
xml 输出不是由 JUnit(至少不是 junit.jar)生成的,而是由 junit ant 任务生成的。
相关类是org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter。
I can only give you an general information.
In the sourcecode of JUnit, you will find your information.
If you provide some more information, I can help you further. My personal hint for finding your specification would be junit.framework.TestResult
.
Good luck!