如何以编程方式指定备用 .config 文件?
我有一个自定义配置部分,我正在为其构建一些单元测试。我希望能够以某种方式以编程方式指定不同的 .config 文件进行测试。有办法做到这一点吗?
I have a custom configuration section, and i'm constructing some unit tests for it. I'd like to be able to specify, somehow, different .config files programatically to test. Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道你的单元测试到底是什么样的。
如果您的单元测试项目中存在自定义配置所在的 app.config 文件,则可能的解决方案是以可写模式打开配置,并根据需要更改配置值。单元测试后,恢复旧的配置值。
使用
另请参阅 msdn
如果您正在寻找可单元测试的配置解决方案,请尝试输出 DslConfig
I don't know what exactly your unit tests look like.
If you have an app.config file in your unit test project where your custom configuration resides, a possible solution would be to open the configuration in a writeable mode and change the config values to your need. After the unit test, restore the old config values.
Use
See also msdn
If you are looking for a unit testable configuration solutions try out DslConfig