标签: c# nunit nunit-2.5 typemock typemock-isolator
我正在上课,如下所示。我想知道如何使用Typemock模拟这个类
public static class MyClass { public static string MyFunction() { } }
答案 0 :(得分:4)
静态方法模拟不需要特殊语法。您应该像往常一样使用AAA语法。
Isolate.Fake.WhenCalled(() => MyClass.MyFunction()).WillReturn("mock");
有一些great documentation about this on the Typemock site。