如何将[assembly:PexLinqPackage]添加到测试项目中

时间:2010-03-24 15:54:42

标签: c# c#-3.0 pex pex-and-moles

我想让Pex在我的项目中使用linq。我得到了关于我需要做什么的解释:

In order for Pex to support Linq, make sure you add a reference to
Microsoft.Pex.Linq.dll and add the [assembly: PexLinqPackage] 
attribute to the test project. 

我添加了参考。但我从来没有在项目中添加像 [assembly:PexLinqPackage] 这样的东西。这是怎么做到的?

1 个答案:

答案 0 :(得分:3)

选择测试项目中的任何文件(AssemblyInfo.cs都可以。)并为其添加[assembly: PexLinqPackage]行。

您可以绝对使用任何文件来添加程序集级属性,但AssemblyInfo.cs似乎是最佳选择,因为它已包含多个程序集级属性。