使用 Microsoft fakes 我在我的存根对象中有以下方法签名:
public void GetAllOf1ExpressionOfFuncOfT0M0Int32Int32<T2>(FakesDelegates.Func<Expression<System.Func<T, T2>>, int, int, IList<T>> stub);
这是这个真实的存根方法:
IList<T> GetAll<T2>(Expression<Func<T, T2>> orderbyexpr, int nStartAt = -1, int NumToSel = -1);
我想做的是通过使用此方法为存根方法分配自定义内容:
public static RunReport StubMethod<T>(ref FakesDelegates.Func<T> func, T returnValue)
{
var counter = new RunReport();
func = () =>
{
Interlocked.Increment(ref counter.Count);
return returnValue;
};
return counter;
}
我遇到的问题是我无法理解 StubMethod 的签名应该是什么,我该如何称呼它?
我尝试了几件事,导致我“无法分配方法组/无法转换方法组”。
顺便说一句 - 它与其他更简单的存根方法完美配合,如下所示:
IList<T> IRepository<T>.GetAll();
所以它必须是定义问题......
这是我在代码中使用 GetAll 的地方......这应该重定向到我的自定义函数:
public IList<EntityType> GetAllEntityTypesByName(string filter)
{
IList<EntityType> types = new List<EntityType>();
try
{
using (IUnitOfWork uow = ctx.CreateUnitOfWork(true))
{
IRepository<EntityType> repType = uow.CreateRepository<EntityType>();
if (string.IsNullOrEmpty(filter))
{
types = repType.GetAll(o => o.Name);
}
else
{
types = repType.Find(t => t.Name.ToLower().Contains(filter.ToLower()), o => o.Name);
}
}
}
catch (Exception e)
{
ResourceManager.Instance.Logger.LogException(e);
}
return types;
}
另一种看待问题的方法是我想替换它:
stubRepType.GetAllOf1ExpressionOfFuncOfT0M0Int32Int32<string>((a, b, c) => { return new List<EntityType>(); });
有了这个:
TestHelper.StubRepositoryMethod<IList<EntityType>>(ref stubRepType.GetAllOf1ExpressionOfFuncOfT0M0Int32Int32<string>, new List<EntityType>());