测试 Ninject(或任何 IoC 容器)绑定?
我在 ASP.NET MVC 3 项目中使用 Ninject,现在有一个复杂的对象图。
我想要一些单元测试来确保我所有需要的类型都是可绑定的 - 目前我发现的唯一方法是通过 ASPX 错误页面。
我无法找到有关如何执行此操作的文档。
那么简单吗
_kernel.Get<IService>();
难道只是编写并让异常测试失败 ?或者是否有更聪明的方法来使用 DI 的 MVC 挂钩来做到这一点?
I am using Ninject in my ASP.NET MVC 3 project and now have a complicated object graph.
I would like some unit tests to ensure that all my required types are bindable - at the moment the only way I'm finding out is via the ASPX error page.
I'm having trouble finding documentation on how to do this.
Is it as simple as writing
_kernel.Get<IService>();
and letting the exception fail the test? Or is there a cleverer way to do this using the MVC hooks for DI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了普通的单元测试之外,我们还有集成测试,可以测试除 UI 和 DB 之外的所有内容,包括 Ninject 绑定。因此,我们按照生产中的方式设置所有内容,并将这些部分重新绑定到模拟中。这也将测试 Ninject 绑定。
对于 MVC,这意味着您必须创建内核,加载与生产中相同的模块并重新绑定数据库访问。然后创建控制器的实例并调用要测试的操作并检查它们是否按预期运行。
Additionally to ordinary unit tests, we have integration tests that test everything but UI and DB including the Ninject bindings. Therefore we setup everything as in production and rebind these parts to mocks. This will also test the Ninject bindings.
In case of MVC this means you have to create a kernel, load the same modules as in production and rebind the DB access. Then create an instance of the controller and call the actions you want to test and check if they behave as expected.