在 TFS Buid 服务器上运行测试时指定配置文件

发布于 2024-08-07 17:18:26 字数 255 浏览 3 评论 0原文

我们没有 VS 测试版。因此,我们通过指定包含测试的 dll 来运行测试:

 <TestContainer Include="$(OutDir)\%2a.Test.dll;$(OutDir)\%2a.Tests.dll"  />

这工作正常,除了需要从配置文件(App.config)读取信息的集成测试之外,

它们是指定配置文件的方法吗?或者更好的方法?

谢谢

设拉子

We do not have VS Test Edition. So we are running tests by specifying the dll which contains the tests:

 <TestContainer Include="$(OutDir)\%2a.Test.dll;$(OutDir)\%2a.Tests.dll"  />

This works OK, except for the Integration tests that need to read information from the configuration file (App.config)

Is their a way to specify the configuration file? Or a better way of doing it?

Thanks

Shiraz

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

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

发布评论

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

评论(1

失眠症患者 2024-08-14 17:18:26

您可以简单地将 RunConfigFile 属性添加到构建中,如下所示:

<RunConfigFile>$(SolutionRoot)\LocalTestRun.testrunconfig</RunConfigFile>

You can simply add a RunConfigFile property to the build as follows:

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