我坚持使用JustMock模拟Entity Framework 6异步方法。我在Google搜索了很多但没有得到任何足够的结果。最后我在testing with async queries得到了一个例子,但它用的是Moq。
我尝试将其转换为JustMock但我在JustMock中找不到类似.As<TInterface>()
的内容。
请告诉我什么相当于moq.As在JustMock?
答案 0 :(得分:0)
似乎此框架上没有 pure 等效选项Moq.As<TInterface>
。
但是,在Telerik的官方documentation上,使用as
C#受保护的字来解释多个界面模拟。
// Arrange
var foo = Mock.Create<IFoo>();
var iDisposable = foo as IDisposable; // <<<<<<<<<<<<<<<<<<<<<<<<<<<<
阅读本文档并尝试提出的解决方案。