Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows 7, .NET 6.0.2xx: dotnet test always crashes with AccessViolationException in RuntimeAssembly.InternalLoad on my machine #3543

Closed
loop-evgeny opened this issue Apr 4, 2022 · 17 comments

Comments

@loop-evgeny
Copy link

Description

I cannot run dotnet test for any NUnit project on my machine (have not tried other test frameworks). It crashes with the exception below, even for a trivial project (attached). However, it runs successfully via vstest.console.exe, so let me know if this is the wrong project for the bug report.

Steps to reproduce

C# project like this:

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>netcoreapp3.1</TargetFramework>
  </PropertyGroup>

  <ItemGroup>
     <!-- Also happens with 17.1.0 (latest stable version) -->
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0-preview-20220401-07" />
    <PackageReference Include="NUnit" Version="3.13.3" />
    <PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
  </ItemGroup>

</Project>

with a trivial test file:

using System;
using NUnit.Framework;

namespace MyTestProject
{
    [TestFixture]
    public class TestTests
    {
        [Test]
        public void ASimpleTest()
        {
            Console.Error.WriteLine("Test running");
        }
    }
}

Run dotnet test.

Expected behavior

The test runs successfully via dotnet test

Actual behavior

dotnet test
  Determining projects to restore...
  All projects are up-to-date for restore.
  MyTestProject -> C:\W ork\Bugs\VSTest-AV\MyTestProject\bin\Debug\netcoreapp3.1\MyTestProject.dll
Test run for C:\W ork\Bugs\VSTest-AV\MyTestProject\bin\Debug\netcoreapp3.1\MyTestProject.dll (.NETCoreApp,Version=v3.1)
Microsoft (R) Test Execution Command Line Tool Version 17.1.0
Copyright (c) Microsoft Corporation.  All rights reserved.

Fatal error. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
   at System.Reflection.RuntimeAssembly.InternalLoad(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.StackCrawlMarkHandle, Boolean, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack)
   at System.Reflection.RuntimeAssembly.InternalLoad(System.Reflection.AssemblyName, System.Reflection.RuntimeAssembly, System.Threading.StackCrawlMark ByRef, Boolean, System.Runtime.Loader.AssemblyLoadContext)
   at System.Reflection.Assembly.Load(System.Reflection.AssemblyName)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.CurrentDomainAssemblyResolve(System.Object, Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces.AssemblyResolveEventArgs)
   at Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformAssemblyResolver.AssemblyResolverEvent(System.Object, System.Object)
   at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(System.Reflection.AssemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(System.Reflection.AssemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr, System.Reflection.AssemblyName)
   at System.Reflection.RuntimeModule.GetTypes(System.Reflection.RuntimeModule)
   at System.Reflection.Assembly.GetTypes()
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginDiscoverer.GetTestExtensionsFromAssembly[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](System.Reflection.Assembly, System.Collections.Generic.Dictionary`2<System.String,System.__Canon>)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginDiscoverer.GetTestExtensionsFromFiles[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](System.String[], System.Collections.Generic.Dictionary`2<System.String,System.__Canon>)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginDiscoverer.GetTestExtensionsInformation[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](System.Collections.Generic.IEnumerable`1<System.String>)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.GetTestExtensions[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](System.Collections.Generic.IEnumerable`1<System.String>)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.DiscoverTestExtensions[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](System.String)
   at Microsoft.VisualStudio.TestPlatform.Common.Hosting.TestRuntimeExtensionManager.Create(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger)
   at Microsoft.VisualStudio.TestPlatform.Common.Hosting.TestRuntimeProviderManager.get_Instance()
   at Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.TestEngine..ctor()
   at Microsoft.VisualStudio.TestPlatform.Client.TestPlatform..ctor()
   at Microsoft.VisualStudio.TestPlatform.Client.TestPlatformFactory.GetTestPlatform()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.TestPlatformHelpers.TestRequestManager..ctor()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.TestPlatformHelpers.TestRequestManager.get_Instance()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Processors.RunTestsArgumentProcessor+<>c.<get_Executor>b__6_0()
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode)
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean)
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].get_Value()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Processors.ArgumentProcessorFactory+<>c__DisplayClass20_0.<WrapLazyProcessorToInitializeOnInstantiation>b__0()
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].get_Value()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Executor.GetArgumentProcessors(System.String[], System.Collections.Generic.List`1<Microsoft.VisualStudio.TestPlatform.CommandLine.Processors.IArgumentProcessor> ByRef)
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Executor.Execute(System.String[])
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Program.Main(System.String[])

Diagnostic logs

dotnet test --diag:diag.txt : diag.txt

Environment

Windows 7 x64
Microsoft (R) Test Execution Command Line Tool Version 17.1.0
.NET SDK (reflecting any global.json): Version: 6.0.201 Commit: ef40e6aa06

@olavorn
Copy link

olavorn commented Apr 8, 2022

Same crash:

Project

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>

    <IsPackable>false</IsPackable>
  </PropertyGroup>
...
  <ItemGroup>
    <PackageReference Include="Moq" Version="4.16.1" />
    <PackageReference Include="nunit" Version="3.13.1" />
    <PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
  </ItemGroup>

</Project>

Exception

Fatal error. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
   at System.Reflection.RuntimeAssembly.InternalLoad(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.StackCrawlMarkHandle, Boolean, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerSe
rvices.ObjectHandleOnStack)
   at System.Reflection.RuntimeAssembly.InternalLoad(System.Reflection.AssemblyName, System.Reflection.RuntimeAssembly, System.Threading.StackCrawlMark ByRef, Boolean, System.Runtime.Loader.AssemblyLoadContext)
   at System.Reflection.Assembly.Load(System.Reflection.AssemblyName)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.CurrentDomainAssemblyResolve(System.Object, Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces.AssemblyResolveEventArgs)
   at Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformAssemblyResolver.AssemblyResolverEvent(System.Object, System.Object)
   at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(System.Reflection.AssemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(System.Reflection.AssemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr, System.Reflection.AssemblyName)
   at System.Reflection.RuntimeModule.GetTypes(System.Reflection.RuntimeModule)
   at System.Reflection.Assembly.GetTypes()
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginDiscoverer.GetTestExtensionsFromAssembly[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral
, PublicKeyToken=7cec85d7bea7798e]](System.Reflection.Assembly, System.Collections.Generic.Dictionary`2<System.String,System.__Canon>)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginDiscoverer.GetTestExtensionsFromFiles[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, P
ublicKeyToken=7cec85d7bea7798e]](System.String[], System.Collections.Generic.Dictionary`2<System.String,System.__Canon>)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginDiscoverer.GetTestExtensionsInformation[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral,
 PublicKeyToken=7cec85d7bea7798e]](System.Collections.Generic.IEnumerable`1<System.String>)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.GetTestExtensions[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=
7cec85d7bea7798e]](System.Collections.Generic.IEnumerable`1<System.String>)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.DiscoverTestExtensions[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyT
oken=7cec85d7bea7798e]](System.String)
   at Microsoft.VisualStudio.TestPlatform.Common.Hosting.TestRuntimeExtensionManager.Create(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger)
   at Microsoft.VisualStudio.TestPlatform.Common.Hosting.TestRuntimeProviderManager.get_Instance()
   at Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.TestEngine..ctor()
   at Microsoft.VisualStudio.TestPlatform.Client.TestPlatform..ctor()
   at Microsoft.VisualStudio.TestPlatform.Client.TestPlatformFactory.GetTestPlatform()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.TestPlatformHelpers.TestRequestManager..ctor()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.TestPlatformHelpers.TestRequestManager.get_Instance()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Processors.RunTestsArgumentProcessor+<>c.<get_Executor>b__6_0()
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ViaFactory(System.Threading.LazyThreadSafetyMode)
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].ExecutionAndPublication(System.LazyHelper, Boolean)
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].get_Value()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Processors.ArgumentProcessorFactory+<>c__DisplayClass20_0.<WrapLazyProcessorToInitializeOnInstantiation>b__0()
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].CreateValue()
   at System.Lazy`1[[System.__Canon, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].get_Value()
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Executor.GetArgumentProcessors(System.String[], System.Collections.Generic.List`1<Microsoft.VisualStudio.TestPlatform.CommandLine.Processors.IArgumentProcessor> ByRef)
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Executor.Execute(System.String[])
   at Microsoft.VisualStudio.TestPlatform.CommandLine.Program.Main(System.String[])

@olavorn
Copy link

olavorn commented Apr 8, 2022

I see this is not new. nunit/dotnet-test-nunit#115

@olavorn
Copy link

olavorn commented Apr 8, 2022

The problem in my case seems to be related to using tests in a Windows 7 environment. Downgraded to .net 6.0.103 SDK and it worked. You can use the strategy in the specific test project as :

{
  "sdk": {
    "version": "6.0.103"
  }
}

@nohwnd
Copy link
Member

nohwnd commented Apr 8, 2022

Also the same is reported here, also mentioning Windows 7:

dotnet/sdk#24124

@nohwnd nohwnd changed the title dotnet test always crashes with AccessViolationException in RuntimeAssembly.InternalLoad on my machine Windows 7, .NET 6.0.2xx: dotnet test always crashes with AccessViolationException in RuntimeAssembly.InternalLoad on my machine Apr 8, 2022
@nohwnd nohwnd pinned this issue Apr 8, 2022
@alexandrehtrb
Copy link

Error still happening with SDK 6.0.202

@nohwnd
Copy link
Member

nohwnd commented Apr 14, 2022

I am trying to get some system on which to repro.

@loop-evgeny
Copy link
Author

Still happening on 6.0.203. Downgrading to 6.0.103 as suggested in dotnet/sdk#24124 (comment) works around it.

@alexandrehtrb
Copy link

alexandrehtrb commented May 28, 2022

I ran a simple xUnit test project on Windows 7 x64, with .NET SDK 6.0.102, and the logs included an error about Microsoft.Bcl.AsyncInterfaces missing. although this error did not stop execution and the tests were executed successfully.

When I changed to .NET SDK 6.0.200, the logs also included the same error, but the difference is that it was a terminating error, that stopped the execution.

Could this be related to a DLL loading process?

Logs for test project running on .NET SDK 6.0.102 (error shown in lines 53 to 81):

TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.066, 8084954115, vstest.console.dll, Version: 17.0.0
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.066, 8084976258, vstest.console.dll, Using .Net Framework version:.NETCoreApp,Version=v6.0
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.066, 8084977478, vstest.console.dll, FilePatternParser: The given file C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.dll is a full path.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8084992767, vstest.console.dll, TestPluginCache.DiscoverTestExtensions: finding test extensions in assemblies ends with: RuntimeProvider.dll TPluginInfo: Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.Utilities.TestRuntimePluginInformation TExtension: Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8084993967, vstest.console.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: 
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8084997064, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8084997364, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: 
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085000851, vstest.console.dll, AssemblyResolver.ctor: Creating AssemblyResolver with searchDirectories C:\Program Files\dotnet\sdk\6.0.102\Extensions,C:\Program Files\dotnet\sdk\6.0.102
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085003871, vstest.console.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using extension path.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085004557, vstest.console.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: 
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085004673, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085004756, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: 
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085004993, vstest.console.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using allExtensionPaths: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085005617, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.102\Extensions,C:\Program Files\dotnet\sdk\6.0.102
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085005773, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.102\Extensions,C:\Program Files\dotnet\sdk\6.0.102
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085005866, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.102\Extensions,C:\Program Files\dotnet\sdk\6.0.102
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085005944, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.102\Extensions,C:\Program Files\dotnet\sdk\6.0.102
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085006028, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.102\Extensions,C:\Program Files\dotnet\sdk\6.0.102
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085006116, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.102\Extensions,C:\Program Files\dotnet\sdk\6.0.102
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085007485, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085007693, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085008868, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.Diagnostics.NETCore.Client.dll'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.076, 8085009977, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.Diagnostics.NETCore.Client, from path: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085021162, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085021494, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085021720, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.Bcl.AsyncInterfaces.dll', returning.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085021847, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.Bcl.AsyncInterfaces.exe', returning.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085021919, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085022057, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.102\Microsoft.Bcl.AsyncInterfaces.dll', returning.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085022173, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.102\Microsoft.Bcl.AsyncInterfaces.exe', returning.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085022392, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Failed to load assembly.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085022528, vstest.console.dll, CurrentDomainAssemblyResolve: Resolving assembly 'Microsoft.Bcl.AsyncInterfaces'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085022710, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085022838, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolved from cache.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085022923, vstest.console.dll, CurrentDomainAssemblyResolve: Resolving assembly 'Microsoft.Bcl.AsyncInterfaces'.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085023040, vstest.console.dll, CurrentDomainAssemblyResolve: Failed to resolve assembly 'Microsoft.Bcl.AsyncInterfaces'.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.086, 8085024125, vstest.console.dll, CurrentDomainAssemblyResolve: Failed to resolve assembly 'Microsoft.Bcl.AsyncInterfaces'.
TpTrace Warning: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085066642, vstest.console.dll, TestPluginDiscoverer: Failed to get types from assembly 'Microsoft.Diagnostics.NETCore.Client, Version=0.2.4.21401, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.  Skipping test extension scan for this assembly.  Error: System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types.
Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.
   at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
   at System.Reflection.Assembly.GetTypes()
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginDiscoverer.GetTestExtensionsFromAssembly[TPluginInfo,TExtension](Assembly assembly, Dictionary`2 pluginInfos)
System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.
File name: 'Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'
 ---> System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
File name: 'Microsoft.Bcl.AsyncInterfaces, Culture=neutral, PublicKeyToken=null'
   at System.Reflection.RuntimeAssembly.InternalLoad(ObjectHandleOnStack assemblyName, ObjectHandleOnStack requestingAssembly, StackCrawlMarkHandle stackMark, Boolean throwOnFileNotFound, ObjectHandleOnStack assemblyLoadContext, ObjectHandleOnStack retAssembly)
   at System.Reflection.RuntimeAssembly.InternalLoad(AssemblyName assemblyName, RuntimeAssembly requestingAssembly, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, AssemblyLoadContext assemblyLoadContext)
   at System.Reflection.Assembly.Load(AssemblyName assemblyRef)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.CurrentDomainAssemblyResolve(Object sender, AssemblyResolveEventArgs args)
   at Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformAssemblyResolver.AssemblyResolverEvent(Object sender, Object eventArgs)
   at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)
TpTrace Warning: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085067344, vstest.console.dll, LoaderExceptions: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.
File name: 'Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'
 ---> System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
File name: 'Microsoft.Bcl.AsyncInterfaces, Culture=neutral, PublicKeyToken=null'
   at System.Reflection.RuntimeAssembly.InternalLoad(ObjectHandleOnStack assemblyName, ObjectHandleOnStack requestingAssembly, StackCrawlMarkHandle stackMark, Boolean throwOnFileNotFound, ObjectHandleOnStack assemblyLoadContext, ObjectHandleOnStack retAssembly)
   at System.Reflection.RuntimeAssembly.InternalLoad(AssemblyName assemblyName, RuntimeAssembly requestingAssembly, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, AssemblyLoadContext assemblyLoadContext)
   at System.Reflection.Assembly.Load(AssemblyName assemblyRef)
   at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.CurrentDomainAssemblyResolve(Object sender, AssemblyResolveEventArgs args)
   at Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformAssemblyResolver.AssemblyResolverEvent(Object sender, Object eventArgs)
   at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085067710, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.BlameDataCollector: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085067825, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.BlameDataCollector: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085068506, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.BlameDataCollector: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085069390, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.TestPlatform.Extensions.BlameDataCollector, from path: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085071946, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.EventLogCollector: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085072185, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.EventLogCollector: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085072819, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.EventLogCollector: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085073580, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.TestPlatform.Extensions.EventLogCollector, from path: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085077954, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.TestHostRuntimeProvider: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085078418, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.TestHostRuntimeProvider: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085079018, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.TestHostRuntimeProvider: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.096, 8085079767, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.TestPlatform.TestHostRuntimeProvider, from path: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085084813, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085085117, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085085767, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085086583, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger, from path: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085087895, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085088049, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085088629, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085089470, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger, from path: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085091609, vstest.console.dll, TestPluginCache: Discovered the extensions using extension path ''.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085091811, vstest.console.dll, TestPluginCache: Discoverers are ''.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085091883, vstest.console.dll, TestPluginCache: Executors are ''.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085091946, vstest.console.dll, TestPluginCache: Executors2 are ''.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085092007, vstest.console.dll, TestPluginCache: Setting providers are ''.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.106, 8085092066, vstest.console.dll, TestPluginCache: Loggers are ''.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.116, 8085121692, vstest.console.dll, RunTestsArgumentProcessor:Execute: Test run is starting.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.116, 8085122033, vstest.console.dll, RunTestsArgumentProcessor:Execute: Queuing Test run.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.116, 8085122820, vstest.console.dll, TestRequestManager.RunTests: run tests started.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.126, 8085151885, vstest.console.dll, AssemblyMetadataProvider.GetFrameWork: Determined framework:'.NETCoreApp,Version=v6.0' for source: 'C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.dll'
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.126, 8085152590, vstest.console.dll, Determined framework for all sources: .NETCoreApp,Version=v6.0
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.126, 8085153608, vstest.console.dll, AssemblyMetadataProvider.GetArchitecture: Determined architecture:AnyCPU info for assembly: C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.dll
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.126, 8085161255, vstest.console.dll, Determined platform for all sources: X64
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.126, 8085174310, vstest.console.dll, Compatible sources list : 
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.126, 8085174667, vstest.console.dll, C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.dll
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085188479, vstest.console.dll, InferRunSettingsHelper.IsTestSettingsEnabled: Unable to navigate to RunSettings/MSTest. Current node: RunSettings
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085191623, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Resolving assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085191938, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085192207, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Fakes.dll', returning.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085192350, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Fakes.exe', returning.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085192448, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Searching in: 'C:\Program Files\dotnet\sdk\6.0.102'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085192584, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.102\Microsoft.VisualStudio.TestPlatform.Fakes.dll', returning.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085192702, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.102\Microsoft.VisualStudio.TestPlatform.Fakes.exe', returning.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085192773, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Failed to load assembly.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085193813, vstest.console.dll, Failed to load assembly Microsoft.VisualStudio.TestPlatform.Fakes, Version=17.0.0.0, Culture=neutral. Reason:System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualStudio.TestPlatform.Fakes, Version=17.0.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
File name: 'Microsoft.VisualStudio.TestPlatform.Fakes, Version=17.0.0.0, Culture=neutral, PublicKeyToken=null'
   at System.Reflection.RuntimeAssembly.InternalLoad(ObjectHandleOnStack assemblyName, ObjectHandleOnStack requestingAssembly, StackCrawlMarkHandle stackMark, Boolean throwOnFileNotFound, ObjectHandleOnStack assemblyLoadContext, ObjectHandleOnStack retAssembly)
   at System.Reflection.RuntimeAssembly.InternalLoad(AssemblyName assemblyName, RuntimeAssembly requestingAssembly, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, AssemblyLoadContext assemblyLoadContext)
   at System.Reflection.Assembly.Load(AssemblyName assemblyRef)
   at Microsoft.VisualStudio.TestPlatform.Common.Utilities.FakesUtilities.LoadTestPlatformAssembly()
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085199003, vstest.console.dll, TestPluginCache: Update extensions started. Skip filter = False
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085200239, vstest.console.dll, TestPluginCache: Using directories for assembly resolution 'C:\Users\Alexandre\.nuget\packages\coverlet.collector\3.1.0\build\netstandard1.0'.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.136, 8085200372, vstest.console.dll, TestPluginCache: Updated the available extensions to 'C:\Users\Alexandre\.nuget\packages\coverlet.collector\3.1.0\build\netstandard1.0\coverlet.collector.dll'.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.146, 8085238166, vstest.console.dll, TestPluginManager.CreateTestExtension: Attempting to load test extension: Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Hosting.DefaultTestHostManager
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.146, 8085239358, vstest.console.dll, TestPluginManager.CreateTestExtension: Attempting to load test extension: Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Hosting.DotnetTestHostManager
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.146, 8085241467, vstest.console.dll, TestEngine: Initializing Parallel Execution as MaxCpuCount is set to: 1
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.146, 8085242428, vstest.console.dll, InferRunSettingsHelper.IsTestSettingsEnabled: Unable to navigate to RunSettings/MSTest. Current node: RunSettings
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.166, 8085285178, vstest.console.dll, TestRequestSender is acting as server
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.174, 8085310821, vstest.console.dll, TestRunRequest.ExecuteAsync: Creating test run request.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.174, 8085313409, vstest.console.dll, TestRunRequest.ExecuteAsync: Starting.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.175, 8085314947, vstest.console.dll, TestRunRequest.ExecuteAsync: Starting run with settings:TestRunCriteria:
   KeepAlive=False,FrequencyOfRunStatsChangeEvent=10,RunStatsChangeEventTimeout=00:00:01.5000000,TestCaseFilter=,TestExecutorLauncher=
   Settingsxml=<RunSettings>
  <RunConfiguration>
    <ResultsDirectory>C:\Projetos\TestTest\TestResults</ResultsDirectory>
    <TargetPlatform>X64</TargetPlatform>
    <TargetFrameworkVersion>.NETCoreApp,Version=v6.0</TargetFrameworkVersion>
    <TestAdaptersPaths>C:\Users\Alexandre\.nuget\packages\coverlet.collector\3.1.0\build\netstandard1.0\</TestAdaptersPaths>
    <DesignMode>False</DesignMode>
    <CollectSourceInformation>False</CollectSourceInformation>
  </RunConfiguration>
  <LoggerRunSettings>
    <Loggers>
      <Logger friendlyName="Console" uri="logger://microsoft/TestPlatform/ConsoleLogger/v1" assemblyQualifiedName="Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger, vstest.console, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" codeBase="C:\Program Files\dotnet\sdk\6.0.102\vstest.console.dll" enabled="True" />
    </Loggers>
  </LoggerRunSettings>
</RunSettings>

TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.175, 8085315081, vstest.console.dll, TestRunRequest.ExecuteAsync: Wait for the first run request is over.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.175, 8085316839, vstest.console.dll, ParallelProxyExecutionManager: Start execution. Total sources: 1
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.176, 8085319081, vstest.console.dll, ProxyParallelExecutionManager: Triggering test run for next source: C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.dll
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.176, 8085319767, vstest.console.dll, ProxyParallelExecutionManager: No sources available for execution.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:32.176, 8085319896, vstest.console.dll, TestRunRequest.ExecuteAsync: Started.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:32.176, 8085320110, vstest.console.dll, TestRunRequest.WaitForCompletion: Waiting with timeout -1.
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:32.179, 8085329454, vstest.console.dll, ParallelProxyExecutionManager: Execution started. Started clients: 1
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:32.180, 8085330946, vstest.console.dll, ProxyExecutionManager: Test host is always Lazy initialize.
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:32.180, 8085332101, vstest.console.dll, TestRequestSender.InitializeCommunication: initialize communication. 
TpTrace Information: 0 : 2744, 6, 2022/05/28, 13:50:32.187, 8085354266, vstest.console.dll, SocketServer.Start: Listening on endpoint : 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:32.194, 8085379411, vstest.console.dll, DotnetTestHostmanager: Adding  --runtimeconfig "C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.runtimeconfig.json" in args
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:32.194, 8085379759, vstest.console.dll, DotnetTestHostmanager: Adding  --depsfile "C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.deps.json" in args
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:32.195, 8085380444, vstest.console.dll, DotnetTestHostManager: Testhost.exe/testhost.x86.exe found at path: C:\Projetos\TestTest\bin\Debug\net6.0\testhost.exe
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:32.195, 8085380586, vstest.console.dll, DotnetTestHostmanager: Full path of host exe is C:\Projetos\TestTest\bin\Debug\net6.0\testhost.exe
TpTrace Verbose: 0 : 2744, 5, 2022/05/28, 13:50:32.197, 8085390356, vstest.console.dll, DotnetTestHostManager: Starting process 'C:\Projetos\TestTest\bin\Debug\net6.0\testhost.exe' with command line ' --runtimeconfig "C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.runtimeconfig.json" --depsfile "C:\Projetos\TestTest\bin\Debug\net6.0\TestTest.deps.json" --port 49334 --endpoint 127.0.0.1:049334 --role client --parentprocessid 2744 --diag "C:\Projetos\TestTest\logs\log.host.22-05-28_13-50-32_19370_6.txt" --tracelevel 4 --telemetryoptedin false'
TpTrace Verbose: 0 : 2744, 5, 2022/05/28, 13:50:32.215, 8085447482, vstest.console.dll, Test Runtime launched
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:32.215, 8085450344, vstest.console.dll, TestRequestSender.WaitForRequestHandlerConnection: waiting for connection with timeout: 90000
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.170, 8088644148, vstest.console.dll, SocketServer.OnClientConnected: Client connected for endPoint: 127.0.0.1:49334, starting MessageLoopAsync:
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.170, 8088646457, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.450, 8089577355, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089599939, vstest.console.dll, TestRequestSender.CheckVersionWithTestHost: onMessageReceived received message: (ProtocolVersion) -> 5
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089602009, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:33.460, 8089602570, vstest.console.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: 
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:33.460, 8089602964, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll
C:\Program Files\dotnet\sdk\6.0.102\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:33.460, 8089603256, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: 
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089620047, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089620352, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089620466, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089620545, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089620635, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089620709, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089620808, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089620926, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621008, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621079, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621156, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621227, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621313, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621384, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621463, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621534, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621614, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621717, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621807, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621881, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089621958, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622045, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622225, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622367, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622513, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622588, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622667, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622738, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622825, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622896, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089622977, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623050, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623128, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623207, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623285, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623357, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623437, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623512, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623601, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623673, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623751, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623823, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623900, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089623973, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624058, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624129, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624208, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624279, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624356, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624438, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624516, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624585, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624662, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624735, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624811, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624888, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089624971, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625047, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625129, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625201, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625286, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625357, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625435, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625506, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625584, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625662, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625742, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625813, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625892, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089625963, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626041, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626120, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626198, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626269, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626345, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626501, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626576, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626659, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626730, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626806, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626877, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089626961, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627033, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627109, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627180, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627256, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627336, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627413, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627483, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627559, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627631, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627714, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627787, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627865, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089627936, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628026, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628099, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628189, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628261, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628338, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628408, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628486, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628563, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628640, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628713, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628796, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:33.460, 8089628794, vstest.console.dll, TestRequestSender.InitializeExecution: Sending initializing execution with message: {"Version":5,"MessageType":"TestExecution.Initialize","Payload":["C:\\Projetos\\TestTest\\bin\\Debug\\net6.0\\xunit.runner.visualstudio.dotnetcore.testadapter.dll"]}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089628872, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629291, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629381, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629464, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629536, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629617, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629689, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629775, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629853, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089629937, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630010, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630089, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630167, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630247, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630319, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630396, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630469, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630547, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.460, 8089630962, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":5,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"Logging TestHost Diagnostics in file: C:\\Projetos\\TestTest\\logs\\log.host.22-05-28_13-50-32_19370_6.txt"}}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.470, 8089650291, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:33.470, 8089651111, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.470, 8089651221, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 6, 2022/05/28, 13:50:33.480, 8089687587, vstest.console.dll, TestRequestSender.StartTestRun: Sending test run with message: {"Version":5,"MessageType":"TestExecution.StartWithSources","Payload":{"AdapterSourceMap":{"_none_":["C:\\Projetos\\TestTest\\bin\\Debug\\net6.0\\TestTest.dll"]},"RunSettings":"<RunSettings>\r\n  <RunConfiguration>\r\n    <ResultsDirectory>C:\\Projetos\\TestTest\\TestResults</ResultsDirectory>\r\n    <TargetPlatform>X64</TargetPlatform>\r\n    <TargetFrameworkVersion>.NETCoreApp,Version=v6.0</TargetFrameworkVersion>\r\n    <TestAdaptersPaths>C:\\Users\\Alexandre\\.nuget\\packages\\coverlet.collector\\3.1.0\\build\\netstandard1.0\\</TestAdaptersPaths>\r\n    <DesignMode>False</DesignMode>\r\n    <CollectSourceInformation>False</CollectSourceInformation>\r\n  </RunConfiguration>\r\n  <LoggerRunSettings>\r\n    <Loggers>\r\n      <Logger friendlyName=\"Console\" uri=\"logger://microsoft/TestPlatform/ConsoleLogger/v1\" assemblyQualifiedName=\"Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger, vstest.console, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a\" codeBase=\"C:\\Program Files\\dotnet\\sdk\\6.0.102\\vstest.console.dll\" enabled=\"True\" />\r\n    </Loggers>\r\n  </LoggerRunSettings>\r\n</RunSettings>","TestExecutionContext":{"FrequencyOfRunStatsChangeEvent":10,"RunStatsChangeEventTimeout":"00:00:01.5000000","InIsolation":false,"KeepAlive":false,"AreTestCaseLevelEventsRequired":false,"IsDebug":false,"TestCaseFilter":null,"FilterOptions":null},"Package":null}}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.711, 8090438830, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.711, 8090439417, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":5,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.00] xUnit.net VSTest Adapter v2.4.3+1b45f5407b (64-bit .NET 6.0.2)"}}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.712, 8090440467, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:33.712, 8090440636, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:33.712, 8090440721, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.236, 8092200802, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.236, 8092201324, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":5,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.53]   Discovering: TestTest"}}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.236, 8092202025, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.236, 8092202144, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.236, 8092202215, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.286, 8092367894, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.286, 8092368377, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":5,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.58]   Discovered:  TestTest"}}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.286, 8092369004, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.286, 8092369126, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.286, 8092369195, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.286, 8092387446, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.296, 8092388203, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":5,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.58]   Starting:    TestTest"}}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.296, 8092388875, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.296, 8092389705, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.296, 8092389824, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.376, 8092668021, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.376, 8092668362, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":5,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.67]   Finished:    TestTest"}}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.376, 8092668950, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.376, 8092669074, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.376, 8092669142, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.436, 8092868143, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.436, 8092868586, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":5,"MessageType":"TestExecution.Completed","Payload":{"TestRunCompleteArgs":{"TestRunStatistics":{"ExecutedTests":1,"Stats":{"Passed":1}},"IsCanceled":false,"IsAborted":false,"Error":null,"AttachmentSets":[],"ElapsedTimeInRunningTests":"00:00:00.6887206","Metrics":{}},"LastRunTests":{"NewTestResults":[{"TestCase":{"Id":"c2d78b36-56e9-998d-63d8-1fb854e9c6e7","FullyQualifiedName":"TestTest.UnitTest1.Test1","DisplayName":"TestTest.UnitTest1.Test1","ExecutorUri":"executor://xunit/VsTestRunner2/netcoreapp","Source":"C:\\Projetos\\TestTest\\bin\\Debug\\net6.0\\TestTest.dll","CodeFilePath":null,"LineNumber":0,"Properties":[]},"Attachments":[],"Outcome":1,"ErrorMessage":null,"ErrorStackTrace":null,"DisplayName":"TestTest.UnitTest1.Test1","Messages":[],"ComputerName":"ALEXANDRE-PC","Duration":"00:00:00.0025286","StartTime":"2022-05-28T16:50:34.3667322+00:00","EndTime":"2022-05-28T16:50:34.3667322+00:00","Properties":[]}],"TestRunStatistics":{"ExecutedTests":1,"Stats":{"Passed":1}},"ActiveTests":[]},"RunAttachments":[],"ExecutorUris":["executor://xunit/VsTestRunner2/netcoreapp"]}}
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.436, 8092876972, vstest.console.dll, TestRequestSender.EndSession: Sending end session.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.436, 8092877643, vstest.console.dll, ProxyOperationManager.Close: waiting for test host to exit for 100 ms
TpTrace Warning: 0 : 2744, 5, 2022/05/28, 13:50:34.446, 8092900164, vstest.console.dll, TestHostManagerCallbacks.ErrorReceivedCallback Test host standard error line: 
TpTrace Verbose: 0 : 2744, 8, 2022/05/28, 13:50:34.456, 8092937913, vstest.console.dll, TestHostProvider.ExitCallBack: Host exited starting callback.
TpTrace Information: 0 : 2744, 8, 2022/05/28, 13:50:34.456, 8092940711, vstest.console.dll, TestHostManagerCallbacks.ExitCallBack: Testhost processId: 2296 exited with exitcode: 0 error: ''
TpTrace Verbose: 0 : 2744, 8, 2022/05/28, 13:50:34.456, 8092940997, vstest.console.dll, DotnetTestHostManager.OnHostExited: invoking OnHostExited callback
TpTrace Verbose: 0 : 2744, 8, 2022/05/28, 13:50:34.456, 8092941221, vstest.console.dll, CrossPlatEngine.TestHostManagerHostExited: calling on client process exit callback.
TpTrace Information: 0 : 2744, 8, 2022/05/28, 13:50:34.456, 8092941411, vstest.console.dll, TestRequestSender.OnClientProcessExit: Test host process exited. Standard error: 
TpTrace Warning: 0 : 2744, 9, 2022/05/28, 13:50:34.456, 8092941463, vstest.console.dll, ProxyOperationManager: Timed out waiting for test host to exit. Will terminate process.
TpTrace Information: 0 : 2744, 8, 2022/05/28, 13:50:34.456, 8092941544, vstest.console.dll, SocketServer.Stop: Stop server endPoint: 127.0.0.1:49334
TpTrace Information: 0 : 2744, 8, 2022/05/28, 13:50:34.456, 8092941915, vstest.console.dll, SocketServer.Stop: Cancellation requested. Stopping message loop.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.526, 8093165001, vstest.console.dll, TestRunRequest:SendTestRunStatsChange: Starting.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.526, 8093165885, vstest.console.dll, TestRunRequest:SendTestRunStatsChange: Completed.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.526, 8093166585, vstest.console.dll, ParallelProxyExecutionManager: HandlePartialRunComplete: Total completed clients = 1, Run complete = True, Run canceled: False.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093268161, vstest.console.dll, TestRunRequest:TestRunComplete: Starting. IsAborted:False IsCanceled:False.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093268932, vstest.console.dll, TestLoggerManager.HandleTestRunComplete: Ignoring as the object is disposed.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093270086, vstest.console.dll, TestRunRequest:TestRunComplete: Completed.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093270236, vstest.console.dll, TestRequestSender.SetOperationComplete: Setting operation complete.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093270332, vstest.console.dll, SocketServer.Stop: Stop server endPoint: 127.0.0.1:49334
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093270392, vstest.console.dll, SocketServer.Stop: Cancellation requested. Stopping message loop.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:34.556, 8093270386, vstest.console.dll, TestRunRequest.Dispose: Starting.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093270495, vstest.console.dll, SocketServer.PrivateStop: Stopping server endPoint: 127.0.0.1:49334 error: 
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:34.556, 8093270745, vstest.console.dll, TestRunRequest.Dispose: Completed.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:34.556, 8093270882, vstest.console.dll, TestRequestManager.RunTests: run tests completed.
TpTrace Information: 0 : 2744, 1, 2022/05/28, 13:50:34.556, 8093271154, vstest.console.dll, RunTestsArgumentProcessor:Execute: Test run is completed.
TpTrace Verbose: 0 : 2744, 1, 2022/05/28, 13:50:34.556, 8093271875, vstest.console.dll, Executor.Execute: Exiting with exit code of 0
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093272684, vstest.console.dll, LengthPrefixCommunicationChannel.Dispose: Dispose reader and writer.
TpTrace Information: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093273046, vstest.console.dll, SocketServer.Stop: Raise disconnected event endPoint: 127.0.0.1:49334 error: 
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093273263, vstest.console.dll, TestRequestSender: OnTestRunAbort: Operation is already complete. Skip error message.
TpTrace Verbose: 0 : 2744, 9, 2022/05/28, 13:50:34.556, 8093273339, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: exiting MessageLoopAsync remoteEndPoint: 127.0.0.1:49335 localEndPoint: 127.0.0.1:49334

Logs for test project running on .NET SDK 6.0.200 (error shown in lines 57 to 69):

TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.563, 1796268267, vstest.console.dll, Version: 17.1.0-release-20220113-05
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796290926, vstest.console.dll, Using .Net Framework version:.NETCoreApp,Version=v6.0
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796292174, vstest.console.dll, FilePatternParser: The given file C:\Projetos\TestXunitFail\bin\Debug\net6.0\TestXunitFail.dll is a full path.
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796308660, vstest.console.dll, TestPluginCache.DiscoverTestExtensions: finding test extensions in assemblies ends with: RuntimeProvider.dll TPluginInfo: Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.Utilities.TestRuntimePluginInformation TExtension: Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796309874, vstest.console.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: 
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796313512, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.exe
C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.x86.exe
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796313782, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: 
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796316772, vstest.console.dll, AssemblyResolver.ctor: Creating AssemblyResolver with searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796319745, vstest.console.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using extension path.
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796320434, vstest.console.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: 
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796320542, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.exe
C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.x86.exe
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796320639, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: 
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796320873, vstest.console.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using allExtensionPaths: C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.exe
C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.x86.exe
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.Extensions.BlameDataCollector.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.Extensions.EventLogCollector.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.TestPlatform.TestHostRuntimeProvider.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll
C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796321523, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796321681, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796321767, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796321854, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796321931, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796322013, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796322089, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796322163, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories C:\Program Files\dotnet\sdk\6.0.200\Extensions,C:\Program Files\dotnet\sdk\6.0.200
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.573, 1796323567, vstest.console.dll, AssemblyResolver.OnResolve: DumpMinitool: Resolving assembly.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796324414, vstest.console.dll, AssemblyResolver.OnResolve: DumpMinitool: Searching in: 'C:\Program Files\dotnet\sdk\6.0.200\Extensions'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796324781, vstest.console.dll, AssemblyResolver.OnResolve: DumpMinitool: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.dll', returning.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796325820, vstest.console.dll, AssemblyResolver.OnResolve: DumpMinitool: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.exe'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796326992, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: DumpMinitool, from path: C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.exe
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796333914, vstest.console.dll, AssemblyResolver.OnResolve: DumpMinitool.x86: Resolving assembly.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796334242, vstest.console.dll, AssemblyResolver.OnResolve: DumpMinitool.x86: Searching in: 'C:\Program Files\dotnet\sdk\6.0.200\Extensions'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796334506, vstest.console.dll, AssemblyResolver.OnResolve: DumpMinitool.x86: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.x86.dll', returning.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796335276, vstest.console.dll, AssemblyResolver.OnResolve: DumpMinitool.x86: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.x86.exe'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796336260, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: DumpMinitool.x86, from path: C:\Program Files\dotnet\sdk\6.0.200\Extensions\DumpMinitool.x86.exe
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796337502, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Resolving assembly.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796337655, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Searching in: 'C:\Program Files\dotnet\sdk\6.0.200\Extensions'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796338220, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Loading assembly 'C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.Diagnostics.NETCore.Client.dll'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796344290, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.Diagnostics.NETCore.Client, from path: C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.Diagnostics.NETCore.Client.dll
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796352793, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolving assembly.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796353123, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Searching in: 'C:\Program Files\dotnet\sdk\6.0.200\Extensions'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796353361, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.Bcl.AsyncInterfaces.dll', returning.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796353488, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.200\Extensions\Microsoft.Bcl.AsyncInterfaces.exe', returning.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796353558, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Searching in: 'C:\Program Files\dotnet\sdk\6.0.200'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796353700, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.200\Microsoft.Bcl.AsyncInterfaces.dll', returning.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796353819, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: 'C:\Program Files\dotnet\sdk\6.0.200\Microsoft.Bcl.AsyncInterfaces.exe', returning.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796353889, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Failed to load assembly.
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796354018, vstest.console.dll, CurrentDomainAssemblyResolve: Resolving assembly 'Microsoft.Bcl.AsyncInterfaces'.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796354192, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolving assembly.
TpTrace Information: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796354318, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolved from cache.
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796354400, vstest.console.dll, CurrentDomainAssemblyResolve: Resolving assembly 'Microsoft.Bcl.AsyncInterfaces'.
TpTrace Verbose: 0 : 3164, 1, 2022/03/12, 10:21:56.583, 1796354527, vstest.console.dll, CurrentDomainAssemblyResolve: Failed to resolve assembly 'Microsoft.Bcl.AsyncInterfaces'.

@alexandrehtrb
Copy link

I upgraded to .NET SDK 6.0.402 and the problem was solved.

@loop-evgeny
Copy link
Author

Works for me as well with .NET SDK 6.0.402. Closing.

@MarcoRossignoli MarcoRossignoli unpinned this issue May 4, 2023
@KirillOsenkov
Copy link
Member

Randomly seeing an AccessViolationException when discovering tests, seems like Assembly.LoadFrom is throwing an AccessViolation?

TpTrace Information: 0 : 3068, 17, 2024/08/20, 23:31:47.972, 2937368517, testhost.net472.exe, DesktopTestSourceHost.SetupHost(): Creating app-domain for source D:\data\Tests.dll with application base path D:\data.
TpTrace Information: 0 : 3068, 17, 2024/08/20, 23:31:48.113, 2938855312, testhost.net472.exe, DesktopTestSourceHost.SetupHost(): assemblyenumerator location: D:\data\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll , fullname: Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.AssemblyResolver 
TpTrace Information: 0 : 3068, 17, 2024/08/20, 23:31:48.129, 2938899616, testhost.net472.exe, DesktopTestSourceHost.SetupHost(): resolver type: Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.AssemblyResolver , resolve type assembly: D:\data\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 
TpTrace Warning: 0 : 3068, 17, 2024/08/20, 23:31:48.316, 2940792361, testhost.net472.exe, MSTest - MSTestDiscoverer.TryGetTests: Failed to discover tests from D:\data\Tests.dll. Reason:System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

Server stack trace: 
   at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, RuntimeAssembly reqAssembly, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, RuntimeAssembly reqAssembly, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalLoadFrom(String assemblyFile, Evidence securityEvidence, Byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm, Boolean forIntrospection, Boolean suppressSecurityChecks, StackCrawlMark& stackMark)
   at System.Reflection.Assembly.LoadFrom(String assemblyFile)
   at Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.FileOperations.LoadAssembly(String assemblyFileName, Boolean isReflectionOnly)
   at Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.Discovery.AssemblyEnumerator.EnumerateAssembly(String assemblyFileName, ICollection`1& warnings)
   at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
   at System.Runtime.Remoting.Messaging.StackBuilderSink.PrivateProcessMessage(RuntimeMethodHandle md, Object[] args, Object server, Object[]& outArgs)
   at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)

Exception rethrown at [0]: 
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   at Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.Discovery.AssemblyEnumerator.EnumerateAssembly(String assemblyFileName, ICollection`1& warnings)
   at Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.Discovery.AssemblyEnumeratorWrapper.GetTestsInIsolation(String fullFilePath, IRunSettings runSettings, ICollection`1& warnings)
   at Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.Discovery.AssemblyEnumeratorWrapper.GetTests(String assemblyFileName, IRunSettings runSettings, ICollection`1& warnings)

@nohwnd
Copy link
Member

nohwnd commented Aug 22, 2024

@KirillOsenkov did this start happening after upgrade of SDK or any other significant event? Are you using preview SDK or stable? Which version?

@KirillOsenkov
Copy link
Member

I have no further info unfortunately, this is in CloudTest with no easy access to machines. We changed some timings around and it stopped happening :|

@KirillOsenkov
Copy link
Member

Asked about it here:
nunit/nunit-console#660 (comment)

@KirillOsenkov
Copy link
Member

I forgot to follow up in case anyone else runs into this:
#3543 (comment)

This was a bug in msdia140.dll for reading .pdb files. vstest.console.exe was calling IntelliTrace.Profiler.dll which was calling covrun64.dll which was calling dia to read the portable pdb. If a portable pdb contains > 64000 methods, it would crash.

The bug is fixed in Visual Studio 17.11 (and maybe even 17.10). As a workaround, switch that test assembly that is exhibiting the crash to <DebugType>full</DebugType> in the .csproj.

@KirillOsenkov
Copy link
Member

MS internal bug is DevDiv 1938843

@KirillOsenkov
Copy link
Member

 	msdia140.dll!00007ffe69130372()	Unknown
 	msdia140.dll!00007ffe6912d1f7()	Unknown
 	msdia140.dll!00007ffe6912eb4c()	Unknown
 	msdia140.dll!00007ffe69117494()	Unknown
 	msdia140.dll!00007ffe69116982()	Unknown
 	msdia140.dll!00007ffe69117dee()	Unknown
 	msdia140.dll!00007ffe691567cb()	Unknown
 	msdia140.dll!00007ffe69155a02()	Unknown
 	msdia140.dll!00007ffe6912c1fa()	Unknown
 	msdia140.dll!00007ffe69075b2b()	Unknown
 	msdia140.dll!00007ffe69075da5()	Unknown
 	covrun64.dll!vanguard::runtime::managed::module::load_symbols(const std::wstring & search_path, const ATL::CComPtr<IDiaDataSource> & source, const vanguard::common::configuration & configuration) Line 416	C++
 	covrun64.dll!vanguard::runtime::engine::on_module_load_int(unsigned __int64 module_id, vanguard::instrumentation::managed::disassembler & disassembler, vanguard::runtime::managed::module * & module) Line 848	C++
 	[Inline Frame] covrun64.dll!vanguard::runtime::engine::on_module_load(unsigned __int64) Line 640	C++
 	covrun64.dll!on_module_load(unsigned __int64 module_id, vanguard::instrumentation::managed::disassembler & disassembler) Line 28	C++
 	Microsoft.IntelliTrace.Profiler.dll!VanguardInstrumentationMethod::ModuleLoaded(class ModuleInfo *)	Unknown
 	Microsoft.IntelliTrace.Profiler.dll!ProfilerCallbacks::ModuleLoadFinished(unsigned __int64,long)	Unknown
 	[Managed to Native Transition]	
>	mscorlib.dll!System.Reflection.RuntimeAssembly.nLoad(System.Reflection.AssemblyName fileName, string codeBase, System.Security.Policy.Evidence assemblySecurity, System.Reflection.RuntimeAssembly locationHint, ref System.Threading.StackCrawlMark stackMark, System.IntPtr pPrivHostBinder, bool throwOnFileNotFound, bool forIntrospection, bool suppressSecurityChecks) Line 620	C#
 	mscorlib.dll!System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity, System.Reflection.RuntimeAssembly reqAssembly, ref System.Threading.StackCrawlMark stackMark, System.IntPtr pPrivHostBinder, bool throwOnFileNotFound, bool forIntrospection, bool suppressSecurityChecks) Line 578	C#
 	mscorlib.dll!System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity, System.Reflection.RuntimeAssembly reqAssembly, ref System.Threading.StackCrawlMark stackMark, bool throwOnFileNotFound, bool forIntrospection, bool suppressSecurityChecks) Line 538	C#
 	mscorlib.dll!System.Reflection.RuntimeAssembly.InternalLoadFrom(string assemblyFile, System.Security.Policy.Evidence securityEvidence, byte[] hashValue, System.Configuration.Assemblies.AssemblyHashAlgorithm hashAlgorithm, bool forIntrospection, bool suppressSecurityChecks, ref System.Threading.StackCrawlMark stackMark) Line 492	C#
 	mscorlib.dll!System.Reflection.Assembly.ReflectionOnlyLoadFrom(string assemblyFile) Line 406	C#
 	Microsoft.VisualStudio.TestPlatform.ObjectModel.dll!Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyLoadWorker.CheckAssemblyReference(string path, string referenceAssemblyName, byte[] publicKeyToken) Line 115	C#
 	Microsoft.VisualStudio.TestPlatform.ObjectModel.dll!Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.DoesReferencesAssembly(string source, System.Reflection.AssemblyName referenceAssembly) Line 80	C#
 	Microsoft.VisualStudio.TestPlatform.Extensions.CodedWebTestAdapter.dll!Microsoft.VisualStudio.TestPlatform.Extensions.CodedWebTestAdapter.CodedWebTestAdapterHelper.PruningSources(System.Collections.Generic.IEnumerable<string> sources)	Unknown
 	Microsoft.VisualStudio.TestPlatform.Extensions.CodedWebTestAdapter.dll!Microsoft.VisualStudio.TestPlatform.Extensions.CodedWebTestAdapter.CodedWebTestExecutor.RunTests(System.Collections.Generic.IEnumerable<string> sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle frameworkHandle)	Unknown
 	Microsoft.VisualStudio.TestPlatform.Common.dll!Microsoft.VisualStudio.TestPlatform.Common.ExtensionDecorators.SerialTestRunDecorator.RunTests(System.Collections.Generic.IEnumerable<string> sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle frameworkHandle) Line 59	C#
 	Microsoft.TestPlatform.CrossPlatEngine.dll!Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources.InvokeExecutor(Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.Utilities.LazyExtension<Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor, Microsoft.VisualStudio.TestPlatform.Common.Interfaces.ITestExecutorCapabilities> executor, System.Tuple<System.Uri, string> executorUriExtensionTuple, Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Adapter.RunContext runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle frameworkHandle) Line 116	C#
 	Microsoft.TestPlatform.CrossPlatEngine.dll!Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.BaseRunTests.RunTestInternalWithExecutors.AnonymousMethod__0() Line 464	C#
 	Microsoft.TestPlatform.PlatformAbstractions.dll!Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformThread.Run.AnonymousMethod__0() Line 30	C#
 	mscorlib.dll!System.Threading.ThreadHelper.ThreadStart_Context(object state) Line 44	C#
 	mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Line 516	C#
 	mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Line 487	C#
 	mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) Line 480	C#
 	mscorlib.dll!System.Threading.ThreadHelper.ThreadStart() Line 71	C#

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants