我有一个带有许多通用方法的接口。这些方法根据传入的数据类型执行操作。如何使用 NSubstitute 模拟它?目前,我不得不求助于使用具体类而不是模拟,因为我无法处理将调用该方法的所有可能类型。
public interface IInstanceSource
{
bool CanCreate<T>();
T Create<T>();
void Register<T>(Func<T> creator);
}
public static IInstanceSource GetInstanceSource()
{
var _data = new Dictionary<Type, Func<object>>();
var a = Substitute.For<IInstanceSource>();
//code below fails since T is not defined. How do I make the code below accept any type?
a.WhenForAnyArgs(x=>x.Register(Arg.Any<Func<T>>)).Do(x=> { /* todo */});
a.CanCreate<T>().Returns(x => _data[typeof (T)]);
return a;
}
谢谢。