5

我有一个想要伪造的复杂对象。

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;属性修饰符的简单贫血类型。当我查看调试器时,它们都是假的。

有没有办法设置链的最后一个属性并避免设置所有以前的属性?

4

1 回答 1

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);
  1. 为了使其工作,您的自定义对象需要具有公共构造函数,并且最好避免使用接口(但这可以通过自动模拟扩展来缓解,例如 AutoFakeItEasy)。
  2. .Build方法提供了fluent API来自定义对象自动生成,因此可以控制随机性
于 2013-01-17T16:20:10.247 回答