帮忙一些嘲笑
我试图模拟一个界面,我得到了下一个期望:
System.TypeLoadException:System.TypeLoadException:方法实现中的主体签名和声明不匹配
我后来发现我的问题是我在接口中定义的函数:
IList<T> GetAll<T>() where T : class, new();
请告诉我如何定义该类它可以与 nmock2 一起使用吗? 提前致谢
I was trying to mock an interface and I got the next expection:
System.TypeLoadException: System.TypeLoadException: Signature of the body and declaration in a method implementation do not match
I figured out later that my problem was a function that I have defined in my interface:
IList<T> GetAll<T>() where T : class, new();
Please could you tell me how to define the class so it would work with nmock2?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是我的 nmock2 版本,我有 2,当我用 1.x 替换它时,它工作了。
the problem was my nmock2 version, I had 2 and when I replaced it with 1.x it worked.