我有一个复杂的对象,我试图伪造。
interface IContext
{
User User { get; }
}
A.CallTo(
() => _fakeContext.User.Subscription.Attributes)
.Returns(new List<Attribute>());
但我得到了下一个例外:
The current proxy generator can not intercept the specified method for the following reasons: - Non virtual methods can not be intercepted
所有嵌套类型都是属性,它们是具有get; set;
属性修饰符的简单贫血类型。当我调查调试器时,他们都是假的。
有没有办法设置链的最后一个属性并避免设置以前的所有属性?
答案 0 :(得分:3)
如果你的对象足够贫血,你可能想给AutoFixture一个去:
var fake = A.Fake<>();
var fixture = new Fixture();
// If it's possible [1], AutoFixture will generate entire object graph
var user = fixture.CreateAnonymous<User>();
// Since data will be random [2], you can overwrite properties as you like
user.User.Subscription.Attributes = new List<Attributes>();
A.CallTo(() => fake.User).Returns(user);
.Build
方法提供了流畅的API来自定义对象自动生成,因此可以控制随机性