使用 Foq 使用显式实现的接口模拟 class
Mocking a class with an explicitly implemented interface using Foq
我想使用 Foq 模拟实体框架 DbSet
。它是这样的:
let patients =
([
Patient(Guid "00000000-0000-0000-0000-000000000001");
Patient(Guid "00000000-0000-0000-0000-000000000002");
Patient(Guid "00000000-0000-0000-0000-000000000003");
]).AsQueryable()
let mockPatSet = Mock<DbSet<Patient>>.With(fun x ->
<@
// This is where things go wrong. x doesn't have a property Provider
x.Provider --> patients.Provider
@>
)
我尝试在某些地方将 x
强制转换为 IQueryable
,但这不起作用。
正如您在 DbSet
的文档中看到的 here 它确实通过 DbQuery
实现了 IQueryable
接口,但是通过“显式”实现属性来实现.
在 Moq 中有一个函数 As
所以你可以告诉它把它当作一个 IQueryable
看起来像:
var mockSet = new Mock<DbSet<Blog>>();
mockSet.As<IQueryable<Blog>>().Setup(m => m.Provider).Returns(data.Provider);
最新版本的Foq(1.7),现在支持使用Mock.As
方法实现多个接口,类似于Moq中的设置,例如
type IFoo =
abstract Foo : unit -> int
type IBar =
abstract Bar : unit -> int
[<Test>]
let ``can mock multiple interface types using setup`` () =
let x =
Mock<IFoo>().Setup(fun x -> <@ x.Foo() @>).Returns(2)
.As<IBar>().Setup(fun x -> <@ x.Bar() @>).Returns(1)
.Create()
Assert.AreEqual(1, x.Bar())
Assert.AreEqual(2, (x :?> IFoo).Foo())
我想使用 Foq 模拟实体框架 DbSet
。它是这样的:
let patients =
([
Patient(Guid "00000000-0000-0000-0000-000000000001");
Patient(Guid "00000000-0000-0000-0000-000000000002");
Patient(Guid "00000000-0000-0000-0000-000000000003");
]).AsQueryable()
let mockPatSet = Mock<DbSet<Patient>>.With(fun x ->
<@
// This is where things go wrong. x doesn't have a property Provider
x.Provider --> patients.Provider
@>
)
我尝试在某些地方将 x
强制转换为 IQueryable
,但这不起作用。
正如您在 DbSet
的文档中看到的 here 它确实通过 DbQuery
实现了 IQueryable
接口,但是通过“显式”实现属性来实现.
在 Moq 中有一个函数 As
所以你可以告诉它把它当作一个 IQueryable
看起来像:
var mockSet = new Mock<DbSet<Blog>>();
mockSet.As<IQueryable<Blog>>().Setup(m => m.Provider).Returns(data.Provider);
最新版本的Foq(1.7),现在支持使用Mock.As
方法实现多个接口,类似于Moq中的设置,例如
type IFoo =
abstract Foo : unit -> int
type IBar =
abstract Bar : unit -> int
[<Test>]
let ``can mock multiple interface types using setup`` () =
let x =
Mock<IFoo>().Setup(fun x -> <@ x.Foo() @>).Returns(2)
.As<IBar>().Setup(fun x -> <@ x.Bar() @>).Returns(1)
.Create()
Assert.AreEqual(1, x.Bar())
Assert.AreEqual(2, (x :?> IFoo).Foo())