当我尝试运行我的单元测试项目时,我得到以下错误:
Could not load file or assembly ‘ASSEMBLY_NAME,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null’ or one of its dependencies.
The system cannot find the file specified.
被测试的组件位于同一个解决方案中,每个项目都定位到.NET 4.0框架.
它工作了一段时间,但今天我再次收到这个错误.
我无法弄明白什么是错误的,因为错误信息不足以告诉我. (如:WHICH文件无法找到..)
我试图添加一个新的测试项目,但也有一个工作了一段时间,之前给了我同样的错误信息.
有没有人能指出我正确的方向?
编辑:在诊断构建日志中,出现以下错误:
C:\Program Files\MSBuild\Microsoft\VisualStudio\v10.0\TeamTest\ Microsoft.TeamTest.targets(14,5): error : Could not load file or assembly 'ASSEMBLY_NAME,PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. Done executing task "BuildShadowTask" -- Failed. (TaskId:671) Done building target "ResolveTestReferences" in project "ASSEMBLY_NAME.Tests.vbproj" -- Failed.: (TargetId:985)
在查看一些额外的搜索结果后,我在SA
Private Accessor for method is not found发现了这个问题.
我删除了* .accessor文件后,我的测试项目停止了抱怨和成功编译.
大家感谢他们的帮助!