有没有一种方法可以在一个 nunit 项目文件中指定多个应用程序配置文件?
我有一组单元测试,我需要全部从一个命令行调用运行。 其中一个程序集使用与其余程序集不同的配置文件。 有没有一种方法可以在一个 nunit 项目文件中指定多个应用程序配置文件?
I have a collection of unit test that I need to all run from one command line call. One of the assemblies uses a different config file than the rest of the assemblies. Is there a way to specify more than one app config file in one nunit project file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不在项目文件中,但您可以为每个程序集指定一个配置文件(例如 TestAssembly1.dll.config)
Not in a project file, but you can specify a config file per assembly (e.g. TestAssembly1.dll.config)
我想说,当您编写运行测试的脚本时,您会重命名正确的 app.config 以替换另一个,以便在测试启动时加载正确的 app.config。 如果您需要有关如何执行此操作的示例,请告诉我。
I would say when you script running your tests, you rename the right app.config to replace the other one so that when your tests start the right app.config is loaded. Let me know if you need an example of how to do that.