无法读取 HostType(“Moles”)上的 ConfigurationManager.AppSettings
如果 HostType 为 Moles,那么我无法通过 ConfigurationManager.AppSettings 获取数据,
它在 2-3 个月前对我来说工作正常。但它不起作用,我的所有测试用例都失败了(引发了空引用异常)。
请帮我修复。谢谢。
If HostType as Moles, then i can't get data via ConfigurationManager.AppSettings
Its work fine for me 2-3 months before. But it is not worked and all my test cases are failed (raised the null reference exception).
Please help me to fix. thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 .Net 4.0 中当前版本的 Moles 中的一个已知错误 - 您可以使用 Mole 配置管理器并让它返回您想要的值作为解决方法。
作为示例,这就是我如何为 Linq To SQL DataContext 设置测试,以在不连接到 SQL 的情况下获取默认构造函数的代码覆盖率。
This is a known bug in current versions of Moles in .Net 4.0 - You can Mole the configuration manager and have it return the values that you want as a workaround.
As an example, This is how I setup a test for a Linq To SQL DataContext to get code coverage for a default constructor without connecting to SQL.