我在接口上有一个方法:
string DoSomething(string whatever);
我想用最小起订量模拟它,以便它返回传入的任何内容 - 类似于:
_mock.Setup( theObject => theObject.DoSomething( It.IsAny<string>( ) ) ) .Returns( [the parameter that was passed] ) ;
有任何想法吗?
我在接口上有一个方法:
string DoSomething(string whatever);
我想用最小起订量模拟它,以便它返回传入的任何内容 - 类似于:
_mock.Setup( theObject => theObject.DoSomething( It.IsAny<string>( ) ) ) .Returns( [the parameter that was passed] ) ;
有任何想法吗?