0

我正在使用 Rhino Mocks 和 nUnit 来尝试IsApprovable()在对象上测试我的函数。我正在测试的函数依赖于另一个需要传入的对象“UserManager”。我正在尝试模拟 UserManager 的实例,以便可以指定另一个函数的结果GetApproverDependantsList()

我的问题是,当我模拟对象并将其传递给我正在测试的函数时,我得到以下 InvalidCastException:

无法将 'Castle.Proxies.IUserManagerProxye15b431a53ca4190b7ffbdf5e241e2bb' 类型的对象转换为类型 'MyNamespace.Users.UserManager'

我是新手,所以我不确定我是否正确地做事......这是我正在使用的示例模拟代码:

Dim helper As New BookingManagerHelper()
Dim booking As Booking = GetDummyBooking() 'method to get a booking in suitable state
Dim parameters As Collection(Of Parameter) = GetDummyParameters() 'factory method, as above
Dim mockedUserManager = MockRepository.GenerateMock(Of Users.IUserManager)()

'I have created a dummy function called GetUserCollectionWithDependant() to create the results I need the mocked function to return...
mockedUserManager.Stub(Function(x) x.GetApproverDependantsList(-1)).[Return](GetUserCollectionWithDependant(1))

'It's the line below where I find my exception...
Assert.AreEqual(True, helper.IsApprovable(booking, mockedUserManager, parameters))

我尝试测试的功能如下所示:

Public Function IsApprovable(ByVal Booking As Booking , ByVal UserManager As Users.UserManager, Optional ByVal Parameters As Collection(Of Parameter) = Nothing) As Boolean
'various logic checks are performed on the objects passed in
End Function

需要注意的一些事项:

  • UserManager 实现接口 IUserManager
  • UserManager 包含接口未定义的附加属性和功能
  • UserManager 也继承自基类(我需要覆盖基类属性吗?)

如果需要,我可以发布更多代码。提前致谢。

4

1 回答 1

1

我不是 VB.NET 方面的专家,但IsApprovable希望有一个UserManager实例。模拟是 type IUserManager。也许您想调整IsApprovable以使用IUserManager实例。

于 2013-09-30T10:37:34.363 回答