本文介绍了在.NET 3.5项目中运行Pex的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在尝试将Pex和Moles与以.NET 3.5编写的SharePoint 2010解决方案一起使用.当添加测试项目时(通过使用Pex->创建参数化测试),一切似乎都正常.但是,当我尝试编译时,最终会出现大量错误(缺少名称空间等)和有关无法解析引用程序集的警告(例如System.Web,在.NET 4下不再是单个DLL)

I'm currently trying to use Pex and Moles with a SharePoint 2010 solution that's written in .NET 3.5.When adding a test project (by using Pex -> Create parameterized tests) everything seems to work OK.However, when I try to compile I end up with a massive list of errors (missing namespaces and such) and warnings regarding referenced assemblies not being able to be resolved (such as System.Web which under .NET 4 is no single DLL anymore).

据我所知,这是由于被测试的项目是.NET 3.5,而Pex测试的项目是.NET 4.0,但是是否有可能使这种组合有效?

This is due to the projects under test is .NET 3.5 and the Pex test project is .NET 4.0 as far as I understand it, but is it possible to make this combination work at all?

推荐答案

答案在这里: http://msdn.microsoft.com/zh-cn/library/system.reflection.assembly.securityruleset.aspx

这篇关于在.NET 3.5项目中运行Pex的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 14:32