3

我们使用 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 容器?

谢谢,理查德

4

1 回答 1

0

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

于 2013-11-10T07:41:23.577 回答