gpt4 book ai didi

AutoFixture:你能解冻数据类型吗?

转载 作者:行者123 更新时间:2023-12-04 03:10:31 30 4
gpt4 key购买 nike

是否可以在卡住后解冻对象类型?

如果我有一个使用 DateTime 的对象 Appointment,有没有办法做这样的事情?

var time = fixture.Freeze<DateTime>();
IEnumerable<ClientAppointment> appointments = fixture.CreateMany < ClientAppointment>();
fixture.Unfreeze<ClientAppointment>();

这样我就可以生成注入(inject)了不同 DateTime 的新对象?

最佳答案

在 AutoFixture 中没有解冻类型的记录、稳定的方法。

相反,更改创建对象的顺序,以便

var time = fixture.Freeze<DateTime>();
IEnumerable<ClientAppointment> appointments = fixture.CreateMany < ClientAppointment>();

是你做的最后一件事。

关于AutoFixture:你能解冻数据类型吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34069682/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com