如何将 NUnit 配置文件迁移到 MSTest?
我想将所有单元测试从 NUnit 迁移到 MSTest。 在解决方案中,我有一个 NUnit 配置文件,如下所示:
<NUnitProject>
<Settings activeconfig="Web">
<Config name="Web" appbase="Web" configfile="web.config" binpathtype="Auto">
<assembly path="bin\Product.NUnit.ComponentA.dll"/>
<assembly path="bin\Product.NUnit.ComponentB.dll"/>
<assembly path="bin\Product.NUnit.ComponentC.dll"/>
</Config>
</NUnitProject>
How can I do that in MSTest?
I would like to migrate all my unit tests from NUnit to MSTest. In the solution I have a NUnit configuration file, which looks like this:
<NUnitProject>
<Settings activeconfig="Web">
<Config name="Web" appbase="Web" configfile="web.config" binpathtype="Auto">
<assembly path="bin\Product.NUnit.ComponentA.dll"/>
<assembly path="bin\Product.NUnit.ComponentB.dll"/>
<assembly path="bin\Product.NUnit.ComponentC.dll"/>
</Config>
</NUnitProject>
How could I do that in MSTest?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 MSBuild 执行“MSTest-Task”...
看看这里:MSBuild 的 MSTest 任务
You can use MSBuild to execute a "MSTest-Task"...
Have a look here: MSTest task for MSBuild