rhino 如何模拟返回传入参数的方法?

发布于 2024-09-15 03:12:18 字数 367 浏览 4 评论 0原文

我想要一个模拟的接口方法,它返回传递给它的值,在本例中是一个字符串。方法签名是:

string GetLooUp( string thingToLookUp )

我认为这个匿名委托可以工作,但它在此声明上引发了异常。也许这不是正确的方法?

  Expect.Call( mockIThing.GetLookUp( null ))
        .IgnoreArguments()
        .Do ( (Func<string, string>) delegate (string value) { return value; })
        .Repeat.Any();

I want a mocked interface method that returns the value that is passed in to it, in this case a string. The method signature is:

string GetLooUp( string thingToLookUp )

I thought this anonymous delegate would work, but it throws an exception on this declaration. Maybe this isn't the right approach?

  Expect.Call( mockIThing.GetLookUp( null ))
        .IgnoreArguments()
        .Do ( (Func<string, string>) delegate (string value) { return value; })
        .Repeat.Any();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野味少女 2024-09-22 03:12:18

我发现了问题。我正在嘲笑一个存根接口而不是一个严格的接口。这个模拟效果很好。应该使用:

 ... = mocks.StrictMock< ... >();

I discovered the problem. I was mocking a stub interface rather than a strict interface. This mock works fine. Should have used:

 ... = mocks.StrictMock< ... >();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文