在 TFS Buid 服务器上运行测试时指定配置文件
我们没有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地将 RunConfigFile 属性添加到构建中,如下所示:
You can simply add a RunConfigFile property to the build as follows: