构建服务器上的 Moles 和 Stubs
我试图让我们的团队主要使用 Moles 和 Stubs 来排除静态类。我需要弄清楚的一件事是我是否必须使用构建服务器上的安装程序来安装moles和存根?或者我可以只用我的代码部署依赖项,以便在我的构建服务器上运行指定的测试吗?
谢谢!
I'm trying to get our team to use Moles and Stubs primarily to Mole out static classes. One thing I need to find out is do I have to install moles and stubs using the installation program on my build servers? Or can I just deploy the dependencies with my code so that the moled out tests run on my build server?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们在构建服务器上运行 Pex 和 Moles 时遇到问题,直到我们在构建机器本身上安装了软件包。它实际上需要一个专门的目标来处理特定的 Moles 项目类型。 http://research.microsoft.com/en-us/projects/pex /releasenotes.aspx。
因此,您需要在构建服务器上安装 Pex 和 Moles 才能正常运行。
We have has problems with running Pex and Moles on the build server, until we installed the package on the build machine itself. It actually requires a dedicated target to be able to deal with the specific Moles project types. http://research.microsoft.com/en-us/projects/pex/releasenotes.aspx.
So, you will need to install Pex and Moles on your build server to run without problems.