我按照此链接https://github.com/dennisroche/xunit.ioc.autofac使用 autofac 创建 XUnit 测试,但出现错误
请求的服务“Xunit.Sdk.TestOutputHelper”尚未注册。要避免此异常,请注册一个组件以提供服务,使用 IsRegistered() 检查服务注册,或使用 ResolveOptional() 方法解决可选依赖项。我添加了以下代码:
builder.Register(context => new TestOutputHelper())
.As<ITestOutputHelper>()
.InstancePerLifetimeScope();
我错过了上面链接中的任何内容吗?