How to mock extension methods with Rhino Mock?

2019-01-27 17:47发布

I have extended objects of type IDataReader with some extension methods that I needed. The problem is now when I try to mock the IDataReader, the extended method is not included in the mock so when the row Expect.Call(reader.ExtensionMethod()).Return(someValue) is reach the ExtensionMethod is executed which is not what I want! I want that call to be record and when the extension method is call from somewhere else I want it to return someValue.

Does anyone know how to get around this?

4条回答
女痞
2楼-- · 2019-01-27 18:24

Disclosure: I work for Telerik.

Extension methods are in fact static methods concealed as instance methods. RhinoMock cannot mock static methods and there's no way you can do it, unless you use another mocking library, which uses a profiler.

Such a library is JustMock by Telerik.

查看更多
淡お忘
3楼-- · 2019-01-27 18:32

It is possible to stub extension method or any other static method without any framework. The following code allows you to do so, you just need to stub _doSumm.

public static class MyExtensions
{
    public static Func<int,int, int> _doSumm = (x, y) => x + y;

    public static int Summ(this int x, int y)
    {
        return _doSumm(x, y);
    }
}
查看更多
一夜七次
4楼-- · 2019-01-27 18:47

In my own instance, I wrapped the extension methods I had to stub into methods of a helper class that exposed the wrapper methods in a new interface. I switched my production code to have an instance of this helper class injected and changed the code to call the new methods. The unit tests are injecting a conveniently crafted stub of the helper interface.

While this solution is not perfect, it is still less dramatic than swapping the mocking framework.

查看更多
劳资没心,怎么记你
5楼-- · 2019-01-27 18:48

The answer seems to be no at the moment. To bad though, but I solved my problem with writing a mock class for my interface I wanted to mock instead. Since I didn't needed that many methods of the interface it went pretty fast.

查看更多
登录 后发表回答