我正在使用控制器扩展,我尝试使用FakeItEasy(v 1.7.4)模拟它:
A.CallTo(() => controller.RenderView(A<string>.Ignored,A<object>.Ignored,null)).Returns("");
但是我收到了这个错误:
System.NullReferenceException : Object reference not set to an instance of an object.
at System.Object.GetType()
at FakeItEasy.Creation.ProxyGeneratorSelector.MethodCanBeInterceptedOnInstance(MethodInfo method, Object callTarget, ref String failReason)
at FakeItEasy.Configuration.DefaultInterceptionAsserter.AssertThatMethodCanBeInterceptedOnInstance(MethodInfo method, Object callTarget)
at FakeItEasy.Configuration.FakeConfigurationManager.CallTo(Expression`1 callSpecification)
答案 0 :(得分:15)
这是不可能的。 FakeItEasy(以及其他流行的免费框架,如Moq或RhinoMocks)使用的代理/拦截库不允许拦截静态方法(实际上是静态属性,密封类和非虚拟实例方法)。而扩展方法只是一种静态方法。
答案 1 :(得分:3)
如果扩展方法是在单独的程序集中声明的,则可以在具有相同名称空间的替换程序集中进行链接。
但是,你必须从这个程序集中替换任何其他必需的类型。
答案 2 :(得分:-1)
在FakeItEasy中,您可以将其创建为严格模拟,然后配置静态方法
http://hocke.blogspot.com.ar/2011/03/extension-method-for-creating-strict.html