2

似乎我可能缺少在我的AppHarbor环境中设置一些环境变量。我的测试文件夹找不到对 nunit 框架的引用。我正在使用 NUnit 2.5.9。

部分构建输出粘贴在下面。任何想法我错过了什么?

Primary reference "nunit.framework".
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1360,9): warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. [D:\temp\oyiirwgf.sjw\input\JeeneeTest\JeeneeTest.csproj]
          For SearchPath "{HintPathFromItem}".
          Considered "..\..\..\..\..\..\..\Program Files (x86)\NUnit 2.5.9\bin\net-2.0\framework\nunit.framework.dll", but it didn't exist.
          For SearchPath "{TargetFrameworkDirectory}".
          Considered "C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\nunit.framework.dll", but it didn't exist.
          Considered "C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\nunit.framework.exe", but it didn't exist.
          For SearchPath "{Registry:Software\Microsoft\.NETFramework,v4.0,AssemblyFoldersEx}".
4

2 回答 2

3

我们 (AppHarbor) 建议您使用NuGet Nunit 包。您可以将/packages文件夹连同您的代码一起提交,或者使用NuGet 包还原使 NuGet 包作为 AppHarbor 构建的一部分工作。

于 2012-05-01T01:19:23.073 回答
0

可能您添加了对 NUnit 的引用,它安装在您的开发 PC 上(指向 NUnit 安装文件夹的路径:)Program Files (x86)\NUnit 2.5.9\bin\net-2.0\framework\nunit.framework.dll。有两个选项可以解决此问题:

  • 在运行测试的 PC 上安装 NUnit
  • nunit.framework.dll在您的测试项目中使用对本地的引用

我更喜欢第二个。

于 2012-04-30T22:48:11.560 回答