使用 Selenium RC 与 C# 和 Nunit;如何生成测试用例结果报告?
我正在使用 Selenium RC 与 C# 和 Nunit,问题是结果报告。 我无法报告测试用例结果, 在 Nunit 中,我只能执行单个 DLL,如果我有 4 个 DLL,如何将 4 个 DLL 合并为单个报告?
有人知道这个过程吗请解释一下。
谢谢
I'm using Selenium RC with C# and Nunit, problem is Result Report.
I'm not able to report test cases result,
In Nunit I can execute only single DLL what if i have 4 DLL, how can I club 4 DLL result in Single report?
Do some one have idea abt the process please explain.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在命令行上使用 NUnit 控制台运行单元测试,则可以指定从多个程序集中运行测试并输出到单个文件。
例如 nunit-console /xml:results.xml assembly1.dll assembly2.dll assembly3.dll
详细信息请参阅 NUnit 文档 此处
If you're running your unit tests using NUnit console on the command line then you can specify to run the tests from within multiple assemblies and to output to a single file.
e.g. nunit-console /xml:results.xml assembly1.dll assembly2.dll assembly3.dll
Detailed in the NUnit documentation here