Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Machine.Fakes.Moq 并且我想验证是否调用了接口的方法。验证它的正确方法是什么。我想验证是否使用特定类型的参数调用了该方法,比如说字符串。
谁能告诉我它的语法吗?
谢谢
好吧想通了,
这是语法
Object.WasToldTo(s => s.MethodName(Param.IsAny<String>()));