使用Typemock模拟静态类

时间:2013-06-21 11:45:59

标签: c# nunit nunit-2.5 typemock typemock-isolator

我正在上课,如下所示。我想知道如何使用Typemock模拟这个类

public static class MyClass
{
   public static string MyFunction()
   {

   }
}

1 个答案:

答案 0 :(得分:4)

静态方法模拟不需要特殊语法。您应该像往常一样使用AAA语法。

Isolate.Fake.WhenCalled(() => MyClass.MyFunction()).WillReturn("mock");

有一些great documentation about this on the Typemock site