单元测试 – Windows Store应用程序的单元测试库中的嘲笑框架是什么?

前端之家收集整理的这篇文章主要介绍了单元测试 – Windows Store应用程序的单元测试库中的嘲笑框架是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我写单元测试时,我喜欢使用Rhino Mocks。

所以当我开始我的第一个Windows Store应用程序时,我首先从我的单元测试开始。当我尝试通过NuGet添加RhinoMocks时收到以下错误

Could not install package ‘RhinoMocks 3.6.1’. You are trying to
install this package into a project that targets
‘.NETCore,Version=v4.5’,but the package does not contain any assembly
references that are compatible with that framework. For more
information,contact the package author.

我和Moq有同样的问题。

.NETCor,Version = v4.5有一个嘲笑的框架吗?

大多数嘲笑框架基于Reflection.Emit。不幸的是Reflection.Emit不在WinRT中。这意味着你不能做动态代理。 (即运行时嘲笑)。这使得在编译时引用的前代的嘲笑。我唯一知道的框架是Moq: https://github.com/mbrit/moqrt的实验性分支
原文链接:https://www.f2er.com/windows/372549.html

猜你在找的Windows相关文章