所以我试图从另一个模拟类型返回一个模拟类型,我已经取得了一些进展,但我被困在这里(接口名称已被简化)
考虑接口 IFoo 和 IFooItem。对 IFoo 类型调用 Add,传入 IBar 返回 IFooItem
interface IFoo
{
IFooItem Add(IBar bar);
}
interface IFooItem
{
int fooItemId {get; set;}
}
我还有一个 IFooRepository,我正在尝试使用 Moq 来模拟它,以便我可以模拟添加一个项目。
所以,
var mockFooRepository = new Mock<IFooRepository>();
mockFooRepository.Setup(m=> m.Add(It.IsAny<IBar>()))
.Returns(
// What is the correct way to mock properties of a new IFooItem from
// mocked properties of IBar
// essentially a new mocked type of IFooItem that can read from IBar
// so IFooItem.Property = somevalue, IFooItem.Property2 = IBar.SomeProp
);