我正在尝试让 Autofixture 设置并为我创建一个匿名的界面。我正在使用 AutoMoqCustomization,但我不断收到错误消息。
我的代码是
var configuration = fixture.CreateAnonymous<Mock<IConfiguration>>();
Mock.Get(configuration).SetupAllProperties();
它实际上是错误SetupAllProperties
的
System.ArgumentException:对象实例不是由 Moq 创建的。参数名称:模拟
有人知道我在做什么错吗?