在Monotouch上模拟.NET的框架?

时间:2012-02-28 21:46:10

标签: .net xamarin.ios mocking

有没有人使用过他们发现与Monotouch兼容的.NET模拟框架?在尝试使用之前,我很好奇与NMock,NSubstitute,Moq和其他框架的兼容性。

Xamarin刚刚加强了其单元测试支持,但没有提到模拟框架。仅供参考,我希望在VS 2010上为非UI位做很多开发,并在用户界面发挥作用时进入iOS平台。

感谢您的帮助。

2 个答案:

答案 0 :(得分:4)

我建议只使用手动模拟:

interface IClass {
    void Method(int x);
}

MockClass : IClass {
     public void Method(int x) {
          MethodParameter = x;
     }

     //Assert against this guy
     public int MethodParameter { get; private set; }
}

StubClass : IClass {
     public void Method(int x) {
          //Do nothing
     }
}

如果我不得不猜测Rhino Mocks,Moq等有大量使用Reflection.Emit(你怎么能做他们能做的疯狂?),这将无法在MonoTouch上使用AOT编译器运行。

答案 1 :(得分:1)

试试TrueFakes! 它可以模拟公共接口。