unit-testing - 使用Visual Studio Online构建服务器发现xUnit.net测试的异常

标签 unit-testing tfsbuild xunit.net azure-devops

我在Visual Studio Online托管版本中使用Xunit.net。我的测试已被发现,并且可以在本地和构建服务器上正常运行。但是在构建服务器上,我遇到了这个异常(导致构建达到“部分成功”状态)。这很奇怪,因为实际上我的所有测试都已被发现并运行。

[xUnit.net 00:00:01.3170293] Exception discovering tests from C:\a\bin\xunit.runner.visualstudio.testadapter.dll: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualStudio.TestPlatform.ObjectModel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
File name: 'Microsoft.VisualStudio.TestPlatform.ObjectModel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ---> System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualStudio.TestPlatform.ObjectModel, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
File name: 'Microsoft.VisualStudio.TestPlatform.ObjectModel, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value HKLM\Software\Microsoft\Fusion!EnableLog to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

   at System.Reflection.RuntimeAssembly.GetExportedTypes(RuntimeAssembly assembly, ObjectHandleOnStack retTypes)
   at System.Reflection.RuntimeAssembly.GetExportedTypes()
   at Xunit.Sdk.Executor.EnumerateTests..ctor(Executor executor, Object _handler)$$RethrowMarker$$   at ExceptionExtensions.RethrowWithNoStackTraceLoss(Exception ex)
   at Xunit.RemoteAppDomainManager.CreateObjectTObject
   at Xunit.Xunit1Executor.EnumerateTests(ICallbackEventHandler handler)
   at Xunit.Xunit1.Find(Predicate`1 filter, Boolean includeSourceInformation, IMessageSink messageSink)
   at Xunit.Xunit1.Find(Boolean includeSourceInformation, IMessageSink messageSink)
   at Xunit.XunitFrontController.Find(Boolean includeSourceInformation, IMessageSink messageSink)
   at Xunit.Runner.VisualStudio.TestAdapter.VsTestRunner.GetTests(IEnumerable`1 sources, IMessageLogger logger, XunitVisualStudioSettings settings, Stopwatch stopwatch)

See http://go.microsoft.com/fwlink/?LinkId=254169

我在测试项目中安装了以下nuget软件包:
  • xunit 1.9.2
  • xunit.runner.visualstudio 0.99.2

  • 其他单元测试框架,例如MS Test和NUnit,也可以正常工作。这使我认为问题出在Xunit.net,而不是Visual Studio Online。

    我还在xUnit.net GitHub上打开了一个问题,但仍未解决。
    https://github.com/xunit/xunit/issues/47

    我该如何工作?有人知道解决方法吗?我能以某种方式抑制错误消息吗?

    最佳答案

    testrunner尝试在xunit.runner.visualstudio.testadapter.dll中发现单元测试。为什么?因为它符合*.test*.dll的默认测试源规范。

    将默认的测试源规范更改为*.tests.dll或其他更具体的规范时,它将起作用。

    资料来源:http://erictummers.wordpress.com/2014/02/11/execute-xunit-tests-on-hosted-build-controller/

    关于unit-testing - 使用Visual Studio Online构建服务器发现xUnit.net测试的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22879774/

    相关文章:

    eclipse - 是否有一种无问题的方法可以在集成良好的 Eclipse 中运行 Scala 2.7.7 单元测试?

    angular - 如何在 Angular 4 单元测试中模拟 @ngrx/store 状态

    TFS2015 构建 : "One or more of the steps defined in the build does not have an associated task definition"

    code-coverage - 代码覆盖率不起作用 TFS 构建

    nunit - Visual Studio 2015 的代码/分支覆盖率工具

    c# - 使用 nunit、xunit 或 visual studio 测试拆分测试定义和测试实现

    unit-testing - Grails单元测试

    c# - CheckInGatedChanges 构建工作流中的事件位置

    unit-testing - 如何在 xunit/autofixture 中组合 PropertyData 和 AutoNSubstituteData 属性?

    .net - 如何在 Visual Studio Code 中运行所有测试