单元测试错误'无法加载文件或程序集.'

本文关键字:文件 程序集 加载 错误 单元测试 | 更新日期: 2023-09-27 18:19:25

我一直在努力获得一个NUnit测试类的工作,我使用NUnit 2.6.2通过Resharper 7.1.2 VS2012下。我遇到的问题是,当我运行/调试测试用例时,NUinit无法找到任何要测试的项目程序集。似乎所有的dll都在测试应用程序的调试文件夹中,但测试应用程序没有找到它们。使用Fusion日志,我得到的错误日志显示如下:-

<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><!-- saved from url=(0015)assemblybinder: --></head><body><pre>*** Assembly Binder Log Entry  (21/06/2013 @ 08:46:43) ***
The operation failed.
Bind result: hr = 0x80070002. The system cannot find the file specified.
Assembly manager loaded from:  C:'Windows'Microsoft.NET'Framework'v4.0.30319'clr.dll
Running under executable  C:'Program Files (x86)'JetBrains'ReSharper'v7.1'Bin'JetBrains.ReSharper.TaskRunner.CLR4.exe
--- A detailed error log follows. 
=== Pre-bind state information ===
LOG: DisplayName = PbakConnectAssy, Version=1.0.0.0, Culture=neutral, `enter code here`PublicKeyToken=null
 (Fully-specified)
LOG: Appbase = file:///C:/Program Files (x86)/JetBrains/ReSharper/v7.1/Bin/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = JetBrains.ReSharper.TaskRunner.CLR4.exe
Calling assembly : (Unknown).
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:'Program Files (x86)'JetBrains'ReSharper'v7.1'Bin'JetBrains.ReSharper.TaskRunner.CLR4.exe.Config
LOG: Using host configuration file: 
LOG: Using machine configuration file from C:'Windows'Microsoft.NET'Framework'v4.0.30319'config'machine.config.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Attempting download of new URL file:///C:/Program Files (x86)/JetBrains/ReSharper/v7.1/Bin/PbakConnectAssy.DLL.
LOG: Attempting download of new URL file:///C:/Program Files (x86)/JetBrains/ReSharper/v7.1/Bin/PbakConnectAssy/PbakConnectAssy.DLL.
LOG: Attempting download of new URL file:///C:/Program Files (x86)/JetBrains/ReSharper/v7.1/Bin/PbakConnectAssy.EXE.
LOG: Attempting download of new URL file:///C:/Program Files (x86)/JetBrains/ReSharper/v7.1/Bin/PbakConnectAssy/PbakConnectAssy.EXE.
LOG: All probing URLs attempted and failed.
</pre></body></html>

我完全被难住了,所以任何帮助都很感激。

单元测试错误'无法加载文件或程序集.'

将测试项目的目标平台更改为x86。

更新:

在Visual Studio 2012上运行时,ReSharper 7.1.2也有一个bug。尝试将ReSharper更新到7.1.3版本。

这里有一个相关的问题:Resharper Test Runner:无法加载文件或程序集'System.Windows'

我得到了同样的错误,但它是解决当我运行VS作为管理员。