我正在尝试Setup
返回对扩展方法的调用并收到:
SetUp : System.NotSupportedException : Expression references a method that does not belong to the mocked object: m => m.Cache.GetOrStore<String>("CacheKey", () => "Foo", 900)
GetOrStore
引用作为扩展方法的 Cache 对象上的方法似乎有问题。
代码可以编译,但测试因此异常而失败。
我需要做什么来设置这样的扩展方法的结果?