Nunit 结果

发布于 2024-07-13 08:51:40 字数 128 浏览 3 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冧九 2024-07-20 08:51:40

根据 NUnit-Console 2.4.8 命令行文档默认情况下,xml 输出写入工作目录中的 TestResult.xml。 您可以使用 /xml 命令行选项指定不同的文件名。 例如:

nunit-console /xml:console-test.xml nunit.tests.dll

我的猜测是,要么您使用 /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:

nunit-console /xml:console-test.xml nunit.tests.dll

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文