Using AutoMoq methods with generic signatures

拜拜、爱过 提交于 2019-12-02 00:18:40
Marcio Rinaldi

Mocked objects don't go through AutoFixture by default. You can use the AutoConfiguredMoqCustomization for that though.

However, in your case, the method is generic. AutoConfiguredMoqCustomization doesn't work with generic methods, you'll have to manually set up the method.

Extracted from here:

AutoConfiguredMoqCustomization does not configure generic methods either. You can, however, easily set these up using the ReturnsUsingFixture extension method:

converter.Setup(x => x.Convert<double>("10.0"))
         .ReturnsUsingFixture(fixture);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!