列出已运行的 jUnit 测试
有没有办法获取为了将该列表包含在报告中而运行的 jUnit 测试列表?
我没有复制我运行的 80 个单元测试,而是希望将其输出为 html 或 csv,然后我可以将其转换为报告中的图表。
如果包含每项测试的通过/失败状态,则可加分。
Is there a way to get a list of the jUnit tests that were run for the purpose of including that list in a report?
Rather than copying the 80 unit tests I ran, I was hoping to output it as html or a csv that I could then turn into a figure for my report.
Extra points if the pass/fail status of each test were included.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于你如何运行它们,但如果你使用maven,那么 surefire 插件 会为您生成一份报告。
如果您使用 ant,请参阅如何使用 Ant 创建 HTML 测试报告?
It depends how you run them, but if you're using maven, then the surefire plugin produces a report for you.
If you're using ant, see How do I use Ant to create HTML test reports?