从命令行运行测试时如何强制 mstest 结果覆盖结果文件

发布于 2024-11-11 16:30:13 字数 118 浏览 3 评论 0原文

当我第二次使用 /resultsfile:"file_name.trx" 时,我想通过命令行运行 mstest,因为该文件已经存在,所以它不会运行。

我如何使用相同的文件名并简单地覆盖现有的 trx 文件。

I want to run the mstest via command line when i'm using /resultsfile:"file_name.trx" on the second time it will not run because the file is already exist.

How can i use the same file-name and simply override the existent trx file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无所谓啦 2024-11-18 16:30:13

我使用的方法是在构建脚本中添加逻辑,以在测试运行之前删除文件。

<Delete Files="file_name.trx" Condition="Exists('file_name.trx')"/>

The approach I've used is to add logic into my build script to delete the file before the test is run.

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