我正在寻找自定义AutoFixture的创建时行为,以便我可以在生成和分配固定装置的属性后设置一些依赖对象。
例如,假设我有一个自定义 a 的方法,User
因为它的IsDeleted
属性对于某些测试集总是必须为 false:
public class User
{
public int Id { get; set; }
public string Name { get; set; }
public bool IsDeleted { get; set; }
}
public static ObjectBuilder<User> BuildUser(this Fixture f)
{
return f.Build<User>().With(u => u.IsDeleted, false);
}
(我将ObjectBuilder
返回给测试,以便它可以在必要时进一步定制夹具。)
我想做的是Id
在创建时自动将该用户与匿名集合相关联,但我不能按原样执行此操作,因为Id
在我将返回值交回单元测试时尚未生成恰当的。这是我正在尝试做的事情:
public static ObjectBuilder<User> BuildUserIn(this Fixture f, UserCollection uc)
{
return f.Build<User>()
.With(u => u.IsDeleted, false);
.AfterCreation(u =>
{
var relation = f.Build<UserCollectionMembership>()
.With(ucm => ucm.UserCollectionId, uc.Id)
.With(ucm => ucm.UserId, u.Id)
.CreateAnonymous();
Repository.Install(relation);
}
}
这样的事情可能吗?或者也许有更好的方法来实现我创建匿名对象图的目标?