如何获得 JUnit 格式的 FlexUnit 输出?
我正在设置 FlexUnit 运行命令行 并希望以 JUnit 格式捕获结果,以便我可以将它们拉入 Hudson。
我有什么选择?
I am setting up FlexUnit to run from the command line and want to capture the results in JUnit format, so that I can pull them into Hudson.
What are my options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 ANT 生成 JUnit 风格的 FlexUnit 报告。我以前没有使用过 Make,所以我无法直接帮助您了解其语法。但是,如果有帮助的话,这对我的项目的 ANT 构建文件来说是一个难题:
如您所见,我正在使用 flexUnitTasks 来运行测试,并使用 junitreport 任务来生成报告。
I use ANT to produce my JUnit style FlexUnit reports. I haven't worked with Make before, so I can't directly help you with the syntax for that. However, in case it helps, this is strait for my project's ANT build file:
As you can see I'm using flexUnitTasks to run the tests and the junitreport task to generate the reports.