Nunit 结果
我使用 Nunit 结果来管理所有测试的视图。 阅读 nunit doc 后,它说它会在运行测试后自动更新结果 xml 文件。 但就我而言,它不断向我显示索引文件中的旧结果,以及实际文件中的更新结果。 知道如何根据最新结果更新索引文件。
I am using Nunit results for managerial view of all the tests. After reading nunit doc it says it automatically update the results xml file after running the tests. But In my case it keep showing me the old results in index file where as updated reults in actual file. Any idea how can I update the index file according to the latest results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 NUnit-Console 2.4.8 命令行文档默认情况下,xml 输出写入工作目录中的 TestResult.xml。 您可以使用 /xml 命令行选项指定不同的文件名。 例如:
我的猜测是,要么您使用 /xml 标志指定文件名,但在 TestResult.xml 中徒劳地查找更新结果,要么您不使用 /xml 标志并徒劳地查找更新结果在具有其他名称的文件中。 可能是前者。
According to NUnit-Console 2.4.8 command line docs the xml output is written by default to TestResult.xml in the working directory. You can use the /xml command line option to specify a different file name. For example:
My guess is that either you are specifying a filename with the /xml flag but looking in vain for updated results in TestResult.xml or you are not using the /xml flag and looking in vain for updated results in a file with some other name. Probably the former.