NUnit:找不到配置设置
我已经针对 ASP.Net 项目编写了一个 NUnit 测试项目。从我的测试项目调用时,正在测试的代码无法找到配置值(在 Web.config 中)。提供这些配置设置以便我的测试能够运行的正确方法是什么?
I've written an NUnit test project against an ASP.Net project. The code being tested cannot find the configuration values (in Web.config) when invoked from my test project. What is the right way to provide these configuration settings so my tests will run?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 NUnit 的有关 配置文件 的文档 -它很好地解释了如何处理你的案件。
Take a look on NUnit's documentation about Configuration Files - it's pretty good explained how to handle your case.
您可以为您的测试项目创建一个 app.config 文件。只需将您需要的配置值放在这里即可。
You can create an app.config file for your test project. Just put the configuration values you need in here.