使用 MBUnit 配置
我想使用 MBUnit 为我的应用程序编写单元测试,但是我需要设置一些配置。
我的理解是,我添加到单元测试 DLL 中的任何 App.config 文件都不会被加载。我查看了 wiki,但看不到任何方法,是否有加载我的配置的机制?
I want to use MBUnit to write unit tests for my application, however I will require some configuration to be set up.
My understanding is that any App.config files I add to the unit test DLL will not be loaded. I've looked in the wiki and can't see a way, is there a mechanism for loading my configuration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己对此进行了更多研究,我发现了这篇文章。
您可以像创建常规 exe (DllName.dll.config) 一样创建一个配置文件来完成此操作,MBUnit 会自动将其加载为适当的配置文件。
I have looked into this more by myself, I found this article.
You can do this by creating a config file as you would a regular exe (DllName.dll.config), MBUnit automatically loads this as the appropriate config file.