如何创建自定义NDepend规则以检查DI注册

时间:2013-11-07 00:39:53

标签: .net autofac ndepend

我们使用Autofac作为依赖注入的容器。我们想使用NDepend检查各种事情,以确保我们的DI设置正确且不被误用(我们有一个非常大的解决方案)。

在单元测试中,我可能采取一种方法:

private static IEnumerable<TestCaseData> TestCases
{
    get
    {
        return from registration in Container.Value
            .ComponentRegistry.Registrations
                from service in registration.Services
                where service is TypedService
                orderby service.Description
                select new TestCaseData(registration, service)
                    .SetName(service.Description);
    }
}

然后:

[Test]
[TestCaseSource("TestCases")]
public void CanBeResolved(
    IComponentRegistration componentRegistration, 
    TypedService typedService)
{
    using (var scope = Container.Value.BeginLifetimeScope())
        scope.Resolve(typedService.ServiceType);
}

如何在NDepend中创建自定义规则以确保在Autofac容器中注册所有适当的类型?

谢谢, 理查德

1 个答案:

答案 0 :(得分:0)

从评论中,我可以看到我将编写自己的集成测试,但希望将来能够在NDepend中支持它。