如何以编程方式指定备用 .config 文件?

发布于 2024-12-21 10:49:49 字数 79 浏览 1 评论 0原文

我有一个自定义配置部分,我正在为其构建一些单元测试。我希望能够以某种方式以编程方式指定不同的 .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 技术交流群。

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

发布评论

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

评论(1

如何视而不见 2024-12-28 10:49:49

我不知道你的单元测试到底是什么样的。
如果您的单元测试项目中存在自定义配置所在的 app.config 文件,则可能的解决方案是以可写模式打开配置,并根据需要更改配置值。单元测试后,恢复旧的配置值。

使用

ConfigurationManager.OpenExeConfiguration(...)

另请参阅 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

ConfigurationManager.OpenExeConfiguration(...)

See also msdn

If you are looking for a unit testable configuration solutions try out DslConfig

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