diff --git a/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs b/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs index 99a8718..0371586 100644 --- a/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs +++ b/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs @@ -44,6 +44,14 @@ public class TenantValidationMiddleware if (string.IsNullOrEmpty(clubsClaim)) { + // NEW: Skip check if user is a global admin + var realmAccess = context.User.FindFirst("realm_access")?.Value; + if (!string.IsNullOrEmpty(realmAccess) && realmAccess.Contains("\"admin\"", StringComparison.OrdinalIgnoreCase)) + { + await _next(context); + return; + } + context.Response.StatusCode = StatusCodes.Status403Forbidden; await context.Response.WriteAsJsonAsync(new { error = "User does not have clubs claim" }); return; diff --git a/backend/WorkClub.Api/Services/AdminClubService.cs b/backend/WorkClub.Api/Services/AdminClubService.cs index 7c335ec..f939821 100644 --- a/backend/WorkClub.Api/Services/AdminClubService.cs +++ b/backend/WorkClub.Api/Services/AdminClubService.cs @@ -9,10 +9,12 @@ namespace WorkClub.Api.Services; public class AdminClubService { private readonly AppDbContext _context; + private readonly IHttpContextAccessor _httpContextAccessor; - public AdminClubService(AppDbContext context) + public AdminClubService(AppDbContext context, IHttpContextAccessor httpContextAccessor) { _context = context; + _httpContextAccessor = httpContextAccessor; } public async Task> GetAllClubsAsync() @@ -33,7 +35,15 @@ public class AdminClubService public async Task CreateClubAsync(CreateClubRequest request) { - var tenantId = Guid.NewGuid().ToString(); + var tenantId = "club-" + Guid.NewGuid().ToString().Substring(0, 8); + + // Ensure interceptors can see the new tenantId + var httpContext = _httpContextAccessor.HttpContext; + if (httpContext != null) + { + httpContext.Items["TenantId"] = tenantId; + } + var club = new Club { Id = Guid.NewGuid(), diff --git a/backend/WorkClub.Infrastructure/Data/Interceptors/TenantDbTransactionInterceptor.cs b/backend/WorkClub.Infrastructure/Data/Interceptors/TenantDbTransactionInterceptor.cs index a55f037..241cf46 100644 --- a/backend/WorkClub.Infrastructure/Data/Interceptors/TenantDbTransactionInterceptor.cs +++ b/backend/WorkClub.Infrastructure/Data/Interceptors/TenantDbTransactionInterceptor.cs @@ -185,11 +185,6 @@ public class TenantDbTransactionInterceptor : DbCommandInterceptor, IDbTransacti { var tenantId = _httpContextAccessor.HttpContext?.Items["TenantId"] as string; if (string.IsNullOrWhiteSpace(tenantId)) return null; - if (!Guid.TryParse(tenantId, out _)) - { - _logger.LogWarning("Invalid tenant ID format: {TenantId}", tenantId); - return null; - } return tenantId; } diff --git a/backend/WorkClub.Tests.Integration/Clubs/ClubEndpointsTests.cs b/backend/WorkClub.Tests.Integration/Clubs/ClubEndpointsTests.cs index af024b0..e8b12f8 100644 --- a/backend/WorkClub.Tests.Integration/Clubs/ClubEndpointsTests.cs +++ b/backend/WorkClub.Tests.Integration/Clubs/ClubEndpointsTests.cs @@ -185,7 +185,7 @@ public class ClubEndpointsTests : IntegrationTestBase } [Fact] - public async Task GetClubsCurrent_NoTenantContext_ReturnsBadRequest() + public async Task GetClubsCurrent_NoTenantContext_ReturnsForbidden() { AuthenticateAs("admin@test.com", new Dictionary { @@ -194,7 +194,7 @@ public class ClubEndpointsTests : IntegrationTestBase var response = await Client.GetAsync("/api/clubs/current"); - Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode); + Assert.Equal(HttpStatusCode.Forbidden, response.StatusCode); } [Fact] diff --git a/backend/WorkClub.Tests.Integration/Infrastructure/CustomWebApplicationFactory.cs b/backend/WorkClub.Tests.Integration/Infrastructure/CustomWebApplicationFactory.cs index d64be22..7330378 100644 --- a/backend/WorkClub.Tests.Integration/Infrastructure/CustomWebApplicationFactory.cs +++ b/backend/WorkClub.Tests.Integration/Infrastructure/CustomWebApplicationFactory.cs @@ -67,6 +67,7 @@ public class CustomWebApplicationFactory : WebApplicationFactory {"MessageType":"ProtocolVersion","Payload":7} +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.725, 236454164757416, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"Die TestHost-Diagnose wird in der Datei /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/diag.host.26-03-18_15-19-46_58589_5.txt protokolliert."}} +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.725, 236454164860166, testhost.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestHandler., took 43 ms. +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.725, 236454164875375, testhost.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 after 54 ms +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.725, 236454164894666, testhost.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 +TpTrace Information: 0 : 54518, 11, 2026/03/18, 15:19:46.725, 236454165070375, testhost.dll, TestRequestHandler.OnMessageReceived: received message: (TestExecution.Initialize) -> {"Version":7,"MessageType":"TestExecution.Initialize","Payload":["/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll"]} +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.727, 236454167630875, testhost.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestHandler., took 2 ms. +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.727, 236454167648625, testhost.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 after 2 ms +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.727, 236454167659125, testhost.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 +TpTrace Information: 0 : 54518, 11, 2026/03/18, 15:19:46.727, 236454167688125, testhost.dll, TestRequestHandler.OnMessageReceived: received message: (TestExecution.StartWithSources) -> {"Version":7,"MessageType":"TestExecution.StartWithSources","Payload":{"AdapterSourceMap":{"_none_":["/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll"]},"RunSettings":"\n \n /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/TestResults\n .NETCoreApp,Version=v10.0\n /Users/mastermito/.nuget/packages/coverlet.collector/6.0.4/build/netstandard2.0/\n False\n False\n \n \n \n \n \n normal\n \n \n \n \n minimal\n \n \n \n \n","TestExecutionContext":{"FrequencyOfRunStatsChangeEvent":10,"RunStatsChangeEventTimeout":"00:00:01.5000000","InIsolation":false,"KeepAlive":false,"AreTestCaseLevelEventsRequired":false,"IsDebug":false,"TestCaseFilter":"CreateClub_WithAdminRole_ReturnsCreated","FilterOptions":null},"Package":null}} +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.728, 236454167782916, testhost.dll, TestRequestHandler.OnMessageReceived: Running job 'TestExecution.Initialize'. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.728, 236454168418416, testhost.dll, TestExecutorService: Loading the extensions +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.729, 236454168892916, testhost.dll, TestPluginCache.DiscoverTestExtensions: finding test extensions in assemblies ends with: TestAdapter.dll TPluginInfo: Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.Utilities.TestExecutorPluginInformation TExtension: Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.729, 236454169429625, testhost.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.729, 236454169518000, testhost.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.729, 236454169525333, testhost.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.730, 236454169882666, testhost.dll, AssemblyResolver.ctor: Creating AssemblyResolver with searchDirectories /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0 +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.730, 236454170152083, testhost.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using extension path. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.730, 236454170169458, testhost.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.730, 236454170176041, testhost.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.730, 236454170181583, testhost.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.730, 236454170192875, testhost.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using allExtensionPaths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.730, 236454170354541, testhost.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0 +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.731, 236454171083291, testhost.dll, AssemblyResolver.OnResolve: xunit.runner.visualstudio.testadapter: Resolving assembly. +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.731, 236454171102416, testhost.dll, AssemblyResolver.OnResolve: xunit.runner.visualstudio.testadapter: Searching in: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0'. +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.733, 236454173553958, testhost.dll, AssemblyResolver.OnResolve: xunit.runner.visualstudio.testadapter: Loading assembly '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll'. +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.734, 236454173830583, testhost.dll, AssemblyResolver.OnResolve: Resolved assembly: xunit.runner.visualstudio.testadapter, from path: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.735, 236454175260000, testhost.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestHandler., took 7 ms. +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:46.735, 236454175279291, testhost.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 after 7 ms +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.736, 236454176216708, testhost.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null' file path '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll' +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.743, 236454183484375, testhost.dll, GetTestExtensionFromType: Register extension with identifier data 'executor://xunit/VsTestRunner3/netcore/' and type 'Xunit.Runner.VisualStudio.VsTestRunner, xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null' inside file '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll' +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.744, 236454184178541, testhost.dll, TestPluginCache: Discovered the extensions using extension path ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.744, 236454184369916, testhost.dll, TestPluginCache: Discoverers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.744, 236454184387083, testhost.dll, TestPluginCache: Executors are 'executor://xunit/VsTestRunner3/netcore/'. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.744, 236454184397875, testhost.dll, TestPluginCache: Executors2 are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.744, 236454184408666, testhost.dll, TestPluginCache: Setting providers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.744, 236454184419333, testhost.dll, TestPluginCache: Loggers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.744, 236454184429416, testhost.dll, TestPluginCache: TestHosts are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.744, 236454184440541, testhost.dll, TestPluginCache: DataCollectors are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185045500, testhost.dll, TestPluginCache.DiscoverTestExtensions: finding test extensions in assemblies ends with: TestAdapter.dll TPluginInfo: Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.Utilities.TestExecutorPluginInformation2 TExtension: Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2 +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185106166, testhost.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185112875, testhost.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185119750, testhost.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185165708, testhost.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0 +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185174000, testhost.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using extension path. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185180458, testhost.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185185250, testhost.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185189541, testhost.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185195041, testhost.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using allExtensionPaths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185212041, testhost.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0 +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.745, 236454185234875, testhost.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null' file path '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll' +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.754, 236454194077000, testhost.dll, TestPluginCache: Discovered the extensions using extension path ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.754, 236454194116208, testhost.dll, TestPluginCache: Discoverers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.754, 236454194131541, testhost.dll, TestPluginCache: Executors are 'executor://xunit/VsTestRunner3/netcore/'. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.754, 236454194143958, testhost.dll, TestPluginCache: Executors2 are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.754, 236454194151875, testhost.dll, TestPluginCache: Setting providers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.754, 236454194156625, testhost.dll, TestPluginCache: Loggers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.754, 236454194160708, testhost.dll, TestPluginCache: TestHosts are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.754, 236454194164500, testhost.dll, TestPluginCache: DataCollectors are ''. +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196147583, testhost.dll, TestPluginManager.CreateTestExtension: Attempting to load test extension: Xunit.Runner.VisualStudio.VsTestRunner +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196264166, testhost.dll, TestExecutorExtensionManager: Loading executor Microsoft.VisualStudio.TestPlatform.Common.ExtensionDecorators.SerialTestRunDecorator +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196272166, testhost.dll, TestExecutorService: Loaded the executors +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196436208, testhost.dll, TestPluginCache.DiscoverTestExtensions: finding test extensions in assemblies ends with: TestAdapter.dll TPluginInfo: Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.Utilities.TestSettingsProviderPluginInformation TExtension: Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196458208, testhost.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196465500, testhost.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196470750, testhost.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196500916, testhost.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0 +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196509875, testhost.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using extension path. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196516166, testhost.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196520625, testhost.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196531833, testhost.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196537375, testhost.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using allExtensionPaths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196545166, testhost.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0 +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.756, 236454196560750, testhost.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null' file path '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll' +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454196944916, testhost.dll, TestPluginCache: Discovered the extensions using extension path ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454196953291, testhost.dll, TestPluginCache: Discoverers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454196958375, testhost.dll, TestPluginCache: Executors are 'executor://xunit/VsTestRunner3/netcore/'. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454196963000, testhost.dll, TestPluginCache: Executors2 are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454196969541, testhost.dll, TestPluginCache: Setting providers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454196974416, testhost.dll, TestPluginCache: Loggers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454196978833, testhost.dll, TestPluginCache: TestHosts are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454196982791, testhost.dll, TestPluginCache: DataCollectors are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454197151208, testhost.dll, TestExecutorService: Loaded the settings providers +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454197161416, testhost.dll, TestExecutorService: Loaded the extensions +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.757, 236454197292208, testhost.dll, TestRequestHandler.OnMessageReceived: Running job 'TestExecution.StartWithSources'. +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214022000, testhost.dll, TestDiscoveryManager: Discovering tests from sources /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214583458, testhost.dll, TestPluginCache.DiscoverTestExtensions: finding test extensions in assemblies ends with: TestAdapter.dll TPluginInfo: Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.Utilities.TestDiscovererPluginInformation TExtension: Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestDiscoverer +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214615416, testhost.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214627083, testhost.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214633458, testhost.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214658916, testhost.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0 +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214674666, testhost.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using extension path. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214681583, testhost.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214689291, testhost.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214694166, testhost.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214699958, testhost.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using allExtensionPaths: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214709708, testhost.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0 +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.774, 236454214732833, testhost.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null' file path '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll' +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.776, 236454216649291, testhost.dll, GetTestExtensionFromType: Register extension with identifier data 'Xunit.Runner.VisualStudio.VsTestRunner, xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null' and type 'Xunit.Runner.VisualStudio.VsTestRunner, xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null' inside file '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll' +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.776, 236454216714125, testhost.dll, TestPluginCache: Discovered the extensions using extension path ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.776, 236454216725208, testhost.dll, TestPluginCache: Discoverers are 'Xunit.Runner.VisualStudio.VsTestRunner, xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null'. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.776, 236454216731666, testhost.dll, TestPluginCache: Executors are 'executor://xunit/VsTestRunner3/netcore/'. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.776, 236454216737375, testhost.dll, TestPluginCache: Executors2 are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.776, 236454216742125, testhost.dll, TestPluginCache: Setting providers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.776, 236454216746458, testhost.dll, TestPluginCache: Loggers are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.777, 236454216750625, testhost.dll, TestPluginCache: TestHosts are ''. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.777, 236454216754625, testhost.dll, TestPluginCache: DataCollectors are ''. +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.777, 236454217715875, testhost.dll, PEReaderHelper.GetAssemblyType: Determined assemblyType:'Managed' for source: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll' +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.784, 236454223769041, testhost.dll, BaseRunTests.RunTestInternalWithExecutors: Running tests for executor://xunit/VsTestRunner3/netcore/ +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:46.786, 236454226582916, testhost.dll, [xUnit.net 00:00:00.00] xUnit.net VSTest Adapter v3.1.4+50e68bbb8b (64-bit .NET 10.0.0) +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.786, 236454226646875, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.00] xUnit.net VSTest Adapter v3.1.4+50e68bbb8b (64-bit .NET 10.0.0)"}} +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:46.786, 236454226694583, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 5, 2026/03/18, 15:19:46.823, 236454262904458, testhost.dll, [xUnit.net 00:00:00.03] Discovering: WorkClub.Tests.Integration +TpTrace Verbose: 0 : 54518, 5, 2026/03/18, 15:19:46.823, 236454262987333, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.03] Discovering: WorkClub.Tests.Integration"}} +TpTrace Verbose: 0 : 54518, 5, 2026/03/18, 15:19:46.823, 236454263039250, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 5, 2026/03/18, 15:19:46.839, 236454278837208, testhost.dll, [xUnit.net 00:00:00.05] Discovered: WorkClub.Tests.Integration +TpTrace Verbose: 0 : 54518, 5, 2026/03/18, 15:19:46.839, 236454278921375, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.05] Discovered: WorkClub.Tests.Integration"}} +TpTrace Verbose: 0 : 54518, 5, 2026/03/18, 15:19:46.839, 236454278971833, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:46.848, 236454288104458, testhost.dll, [xUnit.net 00:00:00.06] Starting: WorkClub.Tests.Integration +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:46.848, 236454288176208, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.06] Starting: WorkClub.Tests.Integration"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:46.848, 236454288225666, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:46.909, 236454349434916, testhost.dll, TestExecutionRecorder.RecordStart: Starting test: WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated. +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:47.736, 236455176271500, testhost.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 after 1000 ms +TpTrace Information: 0 : 54518, 13, 2026/03/18, 15:19:48.261, 236455701412750, testhost.dll, Sending test run statistics +TpTrace Verbose: 0 : 54518, 13, 2026/03/18, 15:19:48.269, 236455709176750, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestExecution.StatsChange","Payload":{"NewTestResults":[],"TestRunStatistics":{"ExecutedTests":0,"Stats":{}},"ActiveTests":[{"Id":"a8c49312-90f7-774d-ef37-0a55d289cbae","FullyQualifiedName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","DisplayName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","ExecutorUri":"executor://xunit/VsTestRunner3/netcore/","Source":"/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll","CodeFilePath":null,"LineNumber":0,"Properties":[{"Key":{"Id":"XunitTestCaseExplicit","Label":"xUnit.net Test Case Explicit Flag","Category":"","Description":"","Attributes":0,"ValueType":"System.Boolean"},"Value":false},{"Key":{"Id":"TestCase.ManagedType","Label":"ManagedType","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests"},{"Key":{"Id":"TestCase.ManagedMethod","Label":"ManagedMethod","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"CreateClub_WithAdminRole_ReturnsCreated"},{"Key":{"Id":"XunitTestCaseUniqueID","Label":"xUnit.net Test Case Unique ID","Category":"","Description":"","Attributes":0,"ValueType":"System.String"},"Value":"d0865975d8177c51f513124eed31b3647a0ba8c3"}]}]}} +TpTrace Verbose: 0 : 54518, 13, 2026/03/18, 15:19:48.269, 236455709303333, testhost.dll, TestRunCache: OnNewTestResult: Notified the onCacheHit callback. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.448, 236455888730333, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.resources: Resolving assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.449, 236455888818416, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.resources: Searching in: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0'. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.449, 236455888853458, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.resources: Assembly path does not exist: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.resources.dll', returning. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.449, 236455888870625, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.resources: Assembly path does not exist: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.resources.exe', returning. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.449, 236455888880041, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.resources: Failed to load assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.449, 236455888924041, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.resources: Resolving assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.449, 236455888932375, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.resources: Resolved from cache. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.625, 236456065336916, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Resolving assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.625, 236456065416208, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Searching in: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0'. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.625, 236456065442625, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Assembly path does not exist: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.resources.dll', returning. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.625, 236456065463666, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Assembly path does not exist: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.resources.exe', returning. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.625, 236456065478250, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Failed to load assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.625, 236456065539833, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Resolving assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.625, 236456065548333, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Resolved from cache. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.649, 236456088797666, testhost.dll, AssemblyResolver.OnResolve: System.Net.Security.resources: Resolving assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.649, 236456088864250, testhost.dll, AssemblyResolver.OnResolve: System.Net.Security.resources: Searching in: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0'. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.649, 236456088884041, testhost.dll, AssemblyResolver.OnResolve: System.Net.Security.resources: Assembly path does not exist: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/System.Net.Security.resources.dll', returning. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.649, 236456088898666, testhost.dll, AssemblyResolver.OnResolve: System.Net.Security.resources: Assembly path does not exist: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/System.Net.Security.resources.exe', returning. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.649, 236456088906708, testhost.dll, AssemblyResolver.OnResolve: System.Net.Security.resources: Failed to load assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.649, 236456088952583, testhost.dll, AssemblyResolver.OnResolve: System.Net.Security.resources: Resolving assembly. +TpTrace Information: 0 : 54518, 16, 2026/03/18, 15:19:48.649, 236456088960333, testhost.dll, AssemblyResolver.OnResolve: System.Net.Security.resources: Resolved from cache. +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:48.736, 236456176740541, testhost.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 after 1000 ms +TpTrace Information: 0 : 54518, 19, 2026/03/18, 15:19:48.999, 236456439547708, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Resolving assembly. +TpTrace Information: 0 : 54518, 19, 2026/03/18, 15:19:48.999, 236456439594750, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Resolved from cache. +TpTrace Information: 0 : 54518, 19, 2026/03/18, 15:19:48.999, 236456439630333, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Resolving assembly. +TpTrace Information: 0 : 54518, 19, 2026/03/18, 15:19:48.999, 236456439648958, testhost.dll, AssemblyResolver.OnResolve: Microsoft.EntityFrameworkCore.Relational.resources: Resolved from cache. +TpTrace Error: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456456817750, testhost.dll, [xUnit.net 00:00:02.23] WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated [FAIL] +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456456882166, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":2,"Message":"[xUnit.net 00:00:02.23] WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated [FAIL]"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456456926125, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457214625, testhost.dll, [xUnit.net 00:00:02.23] Microsoft.EntityFrameworkCore.DbUpdateException : An error occurred while saving the entity changes. See the inner exception for details. +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457240708, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] Microsoft.EntityFrameworkCore.DbUpdateException : An error occurred while saving the entity changes. See the inner exception for details."}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457262708, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457276250, testhost.dll, [xUnit.net 00:00:02.23] ---- Npgsql.PostgresException : 42501: permission denied for table clubs +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457288583, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] ---- Npgsql.PostgresException : 42501: permission denied for table clubs"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457305041, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457424875, testhost.dll, [xUnit.net 00:00:02.23] Stack Trace: +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457440541, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] Stack Trace:"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.017, 236456457458083, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456457827791, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456457862958, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456457885250, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456457902583, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456457919500, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456457942041, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456457959625, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456457981875, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458000083, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458016416, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458031500, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458047458, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458061250, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalDatabase.SaveChangesAsync(IList`1 entries, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458078166, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalDatabase.SaveChangesAsync(IList`1 entries, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458094833, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458108833, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458131125, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458144583, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458165500, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(StateManager stateManager, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458177125, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(StateManager stateManager, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458193416, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458206125, testhost.dll, [xUnit.net 00:00:02.23] at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458219625, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458235041, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458249666, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458262125, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458276500, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458291083, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458302375, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458318666, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458341208, testhost.dll, [xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(54,0): at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext() +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458354708, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(54,0): at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext()"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458369541, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458380625, testhost.dll, [xUnit.net 00:00:02.23] --- End of stack trace from previous location --- +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458391333, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458406625, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458421541, testhost.dll, [xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(56,0): at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext() +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458433875, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(56,0): at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext()"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458450791, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458461416, testhost.dll, [xUnit.net 00:00:02.23] --- End of stack trace from previous location --- +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458475791, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458488000, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458500458, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.<>c.<b__3_0>d.MoveNext() +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458516250, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.<>c.<b__3_0>d.MoveNext()"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458530750, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458542916, testhost.dll, [xUnit.net 00:00:02.23] --- End of stack trace from previous location --- +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458552750, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458570083, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458583708, testhost.dll, [xUnit.net 00:00:02.23] at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458598708, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458614500, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458626083, testhost.dll, [xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(49,0): at WorkClub.Api.Services.AdminClubService.CreateClubAsync(CreateClubRequest request) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458637916, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(49,0): at WorkClub.Api.Services.AdminClubService.CreateClubAsync(CreateClubRequest request)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458653125, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458665416, testhost.dll, [xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Endpoints/Clubs/AdminClubEndpoints.cs(39,0): at WorkClub.Api.Endpoints.Clubs.AdminClubEndpoints.CreateClub(CreateClubRequest request, AdminClubService adminClubService) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458675416, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Endpoints/Clubs/AdminClubEndpoints.cs(39,0): at WorkClub.Api.Endpoints.Clubs.AdminClubEndpoints.CreateClub(CreateClubRequest request, AdminClubService adminClubService)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458691000, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458701416, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458710541, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458723541, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458735625, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass102_2.<b__2>d.MoveNext() +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.018, 236456458745250, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass102_2.<b__2>d.MoveNext()"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458756791, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458764458, testhost.dll, [xUnit.net 00:00:02.23] --- End of stack trace from previous location --- +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458775500, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458790833, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458802250, testhost.dll, [xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/MemberSyncMiddleware.cs(24,0): at WorkClub.Api.Middleware.MemberSyncMiddleware.InvokeAsync(HttpContext context, MemberSyncService memberSyncService) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458815625, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/MemberSyncMiddleware.cs(24,0): at WorkClub.Api.Middleware.MemberSyncMiddleware.InvokeAsync(HttpContext context, MemberSyncService memberSyncService)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458831625, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458845333, testhost.dll, [xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs(30,0): at WorkClub.Api.Middleware.TenantValidationMiddleware.InvokeAsync(HttpContext context) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458855833, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs(30,0): at WorkClub.Api.Middleware.TenantValidationMiddleware.InvokeAsync(HttpContext context)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458870291, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458882666, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458904125, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458918083, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458932416, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458943291, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458955583, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458966875, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.AspNetCore.TestHost.HttpContextBuilder.<>c__DisplayClass23_0.<g__RunRequestAsync|0>d.MoveNext() +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458980208, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.TestHost.HttpContextBuilder.<>c__DisplayClass23_0.<g__RunRequestAsync|0>d.MoveNext()"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456458996791, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459008708, testhost.dll, [xUnit.net 00:00:02.23] --- End of stack trace from previous location --- +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459023541, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459037250, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459048083, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.AspNetCore.TestHost.ClientHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459061500, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.TestHost.ClientHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459075041, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459086000, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Mvc.Testing.Handlers.CookieContainerHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459096000, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Mvc.Testing.Handlers.CookieContainerHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459109791, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459122125, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459132083, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459146375, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459167625, testhost.dll, [xUnit.net 00:00:02.23] at System.Net.Http.HttpClient.g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459182000, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at System.Net.Http.HttpClient.g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459198541, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459212791, testhost.dll, [xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/Clubs/AdminClubEndpointsTests.cs(24,0): at WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated() +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459226375, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/Clubs/AdminClubEndpointsTests.cs(24,0): at WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated()"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459242250, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459252541, testhost.dll, [xUnit.net 00:00:02.23] --- End of stack trace from previous location --- +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459264416, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459277416, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459287333, testhost.dll, [xUnit.net 00:00:02.23] ----- Inner Stack Trace ----- +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459299750, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] ----- Inner Stack Trace -----"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459313375, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459327666, testhost.dll, [xUnit.net 00:00:02.23] at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459341083, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459354500, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459370750, testhost.dll, [xUnit.net 00:00:02.23] at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459383125, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459396625, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459408333, testhost.dll, [xUnit.net 00:00:02.23] at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459420458, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459435500, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459448000, testhost.dll, [xUnit.net 00:00:02.23] at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459460250, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459476708, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459488583, testhost.dll, [xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459501250, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459514666, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459526916, testhost.dll, [xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459540875, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459555458, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459567458, testhost.dll, [xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.019, 236456459663625, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456459811500, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456459854041, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456459880625, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456459920208, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456459944375, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456459964583, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456459980833, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456459998208, testhost.dll, [xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456460014958, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.020, 236456460032000, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.022, 236456462286500, testhost.dll, TestExecutionRecorder.RecordResult: Received result for test: WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated. +TpTrace Warning: 0 : 54518, 17, 2026/03/18, 15:19:49.023, 236456463033958, testhost.dll, TestRunCache: InProgressTests is null +TpTrace Warning: 0 : 54518, 17, 2026/03/18, 15:19:49.023, 236456463070958, testhost.dll, TestRunCache: No test found corresponding to testResult 'WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated' in inProgress list. +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.023, 236456463545958, testhost.dll, TestExecutionRecorder.RecordEnd: test: WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated execution completed. +TpTrace Warning: 0 : 54518, 17, 2026/03/18, 15:19:49.023, 236456463559250, testhost.dll, TestRunCache: InProgressTests is null +TpTrace Information: 0 : 54518, 17, 2026/03/18, 15:19:49.233, 236456673498750, testhost.dll, [xUnit.net 00:00:02.44] Finished: WorkClub.Tests.Integration +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.233, 236456673568000, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.44] Finished: WorkClub.Tests.Integration"}} +TpTrace Verbose: 0 : 54518, 17, 2026/03/18, 15:19:49.233, 236456673612750, testhost.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Execution.RunTestsWithSources., took 0 ms. +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:49.235, 236456675726125, testhost.dll, BaseRunTests.RunTestInternalWithExecutors: Completed running tests for executor://xunit/VsTestRunner3/netcore/ +TpTrace Information: 0 : 54518, 4, 2026/03/18, 15:19:49.237, 236456676892208, testhost.dll, Sending test run complete +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:49.242, 236456681792208, testhost.dll, TestRequestHandler.SendData: sending data from testhost: {"Version":7,"MessageType":"TestExecution.Completed","Payload":{"TestRunCompleteArgs":{"TestRunStatistics":{"ExecutedTests":1,"Stats":{"Failed":1}},"IsCanceled":false,"IsAborted":false,"Error":null,"AttachmentSets":[],"InvokedDataCollectors":[],"ElapsedTimeInRunningTests":"00:00:02.4530676","Metrics":{},"DiscoveredExtensions":{"TestDiscoverers":["Xunit.Runner.VisualStudio.VsTestRunner, xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null"],"TestExecutors":["executor://xunit/VsTestRunner3/netcore/"],"TestExecutors2":[],"TestSettingsProviders":[]}},"LastRunTests":{"NewTestResults":[{"TestCase":{"Id":"a8c49312-90f7-774d-ef37-0a55d289cbae","FullyQualifiedName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","DisplayName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","ExecutorUri":"executor://xunit/VsTestRunner3/netcore/","Source":"/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll","CodeFilePath":null,"LineNumber":0,"Properties":[{"Key":{"Id":"XunitTestCaseExplicit","Label":"xUnit.net Test Case Explicit Flag","Category":"","Description":"","Attributes":0,"ValueType":"System.Boolean"},"Value":false},{"Key":{"Id":"TestCase.ManagedType","Label":"ManagedType","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests"},{"Key":{"Id":"TestCase.ManagedMethod","Label":"ManagedMethod","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"CreateClub_WithAdminRole_ReturnsCreated"},{"Key":{"Id":"XunitTestCaseUniqueID","Label":"xUnit.net Test Case Unique ID","Category":"","Description":"","Attributes":0,"ValueType":"System.String"},"Value":"d0865975d8177c51f513124eed31b3647a0ba8c3"}]},"Attachments":[],"Outcome":2,"ErrorMessage":"Microsoft.EntityFrameworkCore.DbUpdateException : An error occurred while saving the entity changes. See the inner exception for details.\n---- Npgsql.PostgresException : 42501: permission denied for table clubs","ErrorStackTrace":" at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Storage.RelationalDatabase.SaveChangesAsync(IList`1 entries, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(StateManager stateManager, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)\n at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)\n at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext() in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs:line 54\n--- End of stack trace from previous location ---\n at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext() in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs:line 56\n--- End of stack trace from previous location ---\n at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.<>c.<b__3_0>d.MoveNext()\n--- End of stack trace from previous location ---\n at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken)\n at WorkClub.Api.Services.AdminClubService.CreateClubAsync(CreateClubRequest request) in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs:line 49\n at WorkClub.Api.Endpoints.Clubs.AdminClubEndpoints.CreateClub(CreateClubRequest request, AdminClubService adminClubService) in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Endpoints/Clubs/AdminClubEndpoints.cs:line 39\n at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext)\n at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass102_2.<b__2>d.MoveNext()\n--- End of stack trace from previous location ---\n at WorkClub.Api.Middleware.MemberSyncMiddleware.InvokeAsync(HttpContext context, MemberSyncService memberSyncService) in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/MemberSyncMiddleware.cs:line 24\n at WorkClub.Api.Middleware.TenantValidationMiddleware.InvokeAsync(HttpContext context) in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs:line 30\n at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)\n at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)\n at Microsoft.AspNetCore.TestHost.HttpContextBuilder.<>c__DisplayClass23_0.<g__RunRequestAsync|0>d.MoveNext()\n--- End of stack trace from previous location ---\n at Microsoft.AspNetCore.TestHost.ClientHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)\n at Microsoft.AspNetCore.Mvc.Testing.Handlers.CookieContainerHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)\n at Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)\n at System.Net.Http.HttpClient.g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken)\n at WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated() in /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/Clubs/AdminClubEndpointsTests.cs:line 24\n--- End of stack trace from previous location ---\n----- Inner Stack Trace -----\n at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)\n at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token)\n at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)\n at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)\n at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)\n at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)\n at Npgsql.NpgsqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)","DisplayName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","Messages":[],"ComputerName":"MacBook-Pro-von-Denis","Duration":"00:00:02.0990329","StartTime":"2026-03-18T14:19:46.91042+00:00","EndTime":"2026-03-18T14:19:49.015933+00:00","Properties":[]}],"TestRunStatistics":{"ExecutedTests":1,"Stats":{"Failed":1}},"ActiveTests":[]},"RunAttachments":[],"ExecutorUris":["executor://xunit/VsTestRunner3/netcore/"]}} +TpTrace Verbose: 0 : 54518, 4, 2026/03/18, 15:19:49.242, 236456681919291, testhost.dll, BaseRunTests.RunTests: Run is complete. +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682244208, testhost.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 +TpTrace Information: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682334250, testhost.dll, TestRequestHandler.OnMessageReceived: received message: (TestSession.Terminate) -> {"MessageType":"TestSession.Terminate","Payload":null} +TpTrace Information: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682342125, testhost.dll, Session End message received from server. Closing the connection. +TpTrace Information: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682465458, testhost.dll, SocketClient.Stop: Stop communication from server endpoint: 127.0.0.1:056513 +TpTrace Information: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682472875, testhost.dll, SocketClient: Stop: Cancellation requested. Stopping message loop. +TpTrace Information: 0 : 54518, 1, 2026/03/18, 15:19:49.242, 236456682470375, testhost.dll, SocketClient.Stop: Stop communication from server endpoint: 127.0.0.1:056513 +TpTrace Information: 0 : 54518, 1, 2026/03/18, 15:19:49.242, 236456682496625, testhost.dll, SocketClient: Stop: Cancellation requested. Stopping message loop. +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682504833, testhost.dll, LengthPrefixCommunicationChannel.Dispose: Dispose reader and writer. +TpTrace Verbose: 0 : 54518, 1, 2026/03/18, 15:19:49.242, 236456682514625, testhost.dll, LengthPrefixCommunicationChannel.Dispose: Dispose reader and writer. +TpTrace Information: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682518750, testhost.dll, Closing the connection ! +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682530416, testhost.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestHandler., took 0 ms. +TpTrace Information: 0 : 54518, 1, 2026/03/18, 15:19:49.242, 236456682545750, testhost.dll, Testhost process exiting. +TpTrace Information: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682594458, testhost.dll, SocketClient.PrivateStop: Stop communication from server endpoint: 127.0.0.1:056513, error: +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682631750, testhost.dll, LengthPrefixCommunicationChannel.Dispose: Dispose reader and writer. +TpTrace Verbose: 0 : 54518, 11, 2026/03/18, 15:19:49.242, 236456682638583, testhost.dll, TcpClientExtensions.MessageLoopAsync: exiting MessageLoopAsync remoteEndPoint: [::ffff:127.0.0.1]:56513 localEndPoint: [::ffff:127.0.0.1]:56514 diff --git a/backend/WorkClub.Tests.Integration/diag.txt b/backend/WorkClub.Tests.Integration/diag.txt new file mode 100644 index 0000000..f487a30 --- /dev/null +++ b/backend/WorkClub.Tests.Integration/diag.txt @@ -0,0 +1,1979 @@ +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.543, 236453983027416, vstest.console.dll, Version: 18.0.1-release-25523-111 Current process architecture: ARM64 +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.544, 236453984263916, vstest.console.dll, Runtime location: /usr/local/share/dotnet/shared/Microsoft.NETCore.App/10.0.0 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.545, 236453985293625, vstest.console.dll, Using .Net Framework version:.NETCoreApp,Version=v10.0 +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.545, 236453985317750, vstest.console.dll, ArtifactProcessingPostProcessModeProcessorExecutor.Initialize: ArtifactProcessingMode.Collect +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.545, 236453985336416, vstest.console.dll, TestSessionCorrelationIdProcessorModeProcessorExecutor.Initialize: TestSessionCorrelationId '54507_ba9e8170-41e3-4247-a9e5-2da48d496776' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.548, 236453988069625, vstest.console.dll, FilePatternParser: The given file /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll is a full path. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.549, 236453989339166, 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 : 54517, 1, 2026/03/18, 15:19:46.549, 236453989577041, vstest.console.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.549, 236453989601458, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Diagnostics.NETCore.Client.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.BlameDataCollector.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.EventLogCollector.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.549, 236453989611458, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453989779041, vstest.console.dll, AssemblyResolver.ctor: Creating AssemblyResolver with searchDirectories /usr/local/share/dotnet/sdk/10.0.100/Extensions,/usr/local/share/dotnet/sdk/10.0.100 +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990001500, vstest.console.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using extension path. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990027916, vstest.console.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990036166, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Diagnostics.NETCore.Client.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.BlameDataCollector.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.EventLogCollector.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990043041, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990064708, vstest.console.dll, TestPluginCache.DiscoverTestExtensions: Discovering the extensions using allExtensionPaths: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Diagnostics.NETCore.Client.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.BlameDataCollector.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.EventLogCollector.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990127041, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /usr/local/share/dotnet/sdk/10.0.100/Extensions,/usr/local/share/dotnet/sdk/10.0.100 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990170916, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /usr/local/share/dotnet/sdk/10.0.100/Extensions,/usr/local/share/dotnet/sdk/10.0.100 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990182458, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /usr/local/share/dotnet/sdk/10.0.100/Extensions,/usr/local/share/dotnet/sdk/10.0.100 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990190333, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /usr/local/share/dotnet/sdk/10.0.100/Extensions,/usr/local/share/dotnet/sdk/10.0.100 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990201125, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /usr/local/share/dotnet/sdk/10.0.100/Extensions,/usr/local/share/dotnet/sdk/10.0.100 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990207791, vstest.console.dll, AssemblyResolver.AddSearchDirectories: Adding more searchDirectories /usr/local/share/dotnet/sdk/10.0.100/Extensions,/usr/local/share/dotnet/sdk/10.0.100 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990344291, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.550, 236453990367708, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.552, 236453992588958, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger: Loading assembly '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.552, 236453992742625, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger, from path: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.553, 236453993063166, vstest.console.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' file path '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.553, 236453993589375, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.553, 236453993612500, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.553, 236453993670916, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Diagnostics.NETCore.Client: Loading assembly '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Diagnostics.NETCore.Client.dll'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453993827291, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.Diagnostics.NETCore.Client, from path: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Diagnostics.NETCore.Client.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453993840375, vstest.console.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'Microsoft.Diagnostics.NETCore.Client, Version=0.2.13.2411, Culture=neutral, PublicKeyToken=31bf3856ad364e35' file path '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Diagnostics.NETCore.Client.dll' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994059166, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994070375, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994078708, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Bcl.AsyncInterfaces.dll', returning. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994157750, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Bcl.AsyncInterfaces.exe', returning. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994175916, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Searching in: '/usr/local/share/dotnet/sdk/10.0.100'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994191166, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Microsoft.Bcl.AsyncInterfaces.dll', returning. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994199250, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Microsoft.Bcl.AsyncInterfaces.exe', returning. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994204916, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Failed to load assembly. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994219583, vstest.console.dll, CurrentDomainAssemblyResolve: Resolving assembly 'Microsoft.Bcl.AsyncInterfaces'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994246708, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994259250, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolved from cache. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994264625, vstest.console.dll, CurrentDomainAssemblyResolve: Resolving assembly 'Microsoft.Bcl.AsyncInterfaces'. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994273875, vstest.console.dll, CurrentDomainAssemblyResolve: Failed to resolve assembly 'Microsoft.Bcl.AsyncInterfaces'. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.554, 236453994362375, vstest.console.dll, CurrentDomainAssemblyResolve: Failed to resolve assembly 'Microsoft.Bcl.AsyncInterfaces'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.555, 236453995251750, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.555, 236453995261041, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolved from cache. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.555, 236453995266416, vstest.console.dll, CurrentDomainAssemblyResolve: Resolving assembly 'Microsoft.Bcl.AsyncInterfaces'. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.555, 236453995271541, vstest.console.dll, CurrentDomainAssemblyResolve: Failed to resolve assembly 'Microsoft.Bcl.AsyncInterfaces'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.555, 236453995537583, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.555, 236453995543791, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Bcl.AsyncInterfaces: Resolved from cache. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.555, 236453995548458, vstest.console.dll, CurrentDomainAssemblyResolve: Resolving assembly 'Microsoft.Bcl.AsyncInterfaces'. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.555, 236453995552875, vstest.console.dll, CurrentDomainAssemblyResolve: Failed to resolve assembly 'Microsoft.Bcl.AsyncInterfaces'. +TpTrace Warning: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453998944833, vstest.console.dll, TestPluginDiscoverer: Failed to get types from assembly 'Microsoft.Diagnostics.NETCore.Client, Version=0.2.13.2411, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. Error: System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. +Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + +Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + +Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + + at System.Reflection.RuntimeModule.GetDefinedTypes() + at System.Reflection.RuntimeModule.GetTypes() + at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginDiscoverer.GetTestExtensionsFromAssembly[TPluginInfo,TExtension](Assembly assembly, Dictionary`2 pluginInfos, String filePath) in /_/src/vstest/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginDiscoverer.cs:line 159 +System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + +File name: 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, 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(AssemblyName assemblyName, StackCrawlMark& stackMark, AssemblyLoadContext assemblyLoadContext, RuntimeAssembly requestingAssembly, Boolean throwOnFileNotFound) + at System.Reflection.Assembly.Load(AssemblyName assemblyRef) + at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.CurrentDomainAssemblyResolve(Object sender, AssemblyResolveEventArgs args) in /_/src/vstest/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginCache.cs:line 514 + at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName) + at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName) +System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + +File name: 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' +System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + +File name: 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' +TpTrace Warning: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999069291, vstest.console.dll, LoaderExceptions: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + +File name: 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, 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(AssemblyName assemblyName, StackCrawlMark& stackMark, AssemblyLoadContext assemblyLoadContext, RuntimeAssembly requestingAssembly, Boolean throwOnFileNotFound) + at System.Reflection.Assembly.Load(AssemblyName assemblyRef) + at Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.TestPluginCache.CurrentDomainAssemblyResolve(Object sender, AssemblyResolveEventArgs args) in /_/src/vstest/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginCache.cs:line 514 + at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName) + at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName) +TpTrace Warning: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999084708, vstest.console.dll, LoaderExceptions: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + +File name: 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' +TpTrace Warning: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999093375, vstest.console.dll, LoaderExceptions: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. + +File name: 'Microsoft.Bcl.AsyncInterfaces, Version=9.0.0.8, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999124000, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.BlameDataCollector: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999138250, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.BlameDataCollector: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999236875, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.BlameDataCollector: Loading assembly '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.BlameDataCollector.dll'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999401625, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.TestPlatform.Extensions.BlameDataCollector, from path: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.BlameDataCollector.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999419166, vstest.console.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'Microsoft.TestPlatform.Extensions.BlameDataCollector, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' file path '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.BlameDataCollector.dll' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999649333, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.TestHostRuntimeProvider: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999658875, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.TestHostRuntimeProvider: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.559, 236453999709458, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.TestHostRuntimeProvider: Loading assembly '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236453999804041, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.TestPlatform.TestHostRuntimeProvider, from path: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236453999814500, vstest.console.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'Microsoft.TestPlatform.TestHostRuntimeProvider, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' file path '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000148291, vstest.console.dll, GetTestExtensionFromType: Register extension with identifier data 'HostProvider://DefaultTestHost' and type 'Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Hosting.DefaultTestHostManager, Microsoft.TestPlatform.TestHostRuntimeProvider, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' inside file '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000230041, vstest.console.dll, GetTestExtensionFromType: Register extension with identifier data 'HostProvider://DotnetTestHost' and type 'Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Hosting.DotnetTestHostManager, Microsoft.TestPlatform.TestHostRuntimeProvider, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' inside file '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000243250, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.EventLogCollector: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000250583, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.EventLogCollector: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000289250, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.TestPlatform.Extensions.EventLogCollector: Loading assembly '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.EventLogCollector.dll'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000338916, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.TestPlatform.Extensions.EventLogCollector, from path: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.EventLogCollector.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000348500, vstest.console.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'Microsoft.TestPlatform.Extensions.EventLogCollector, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' file path '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.EventLogCollector.dll' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000674791, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000683666, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.560, 236454000719875, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger: Loading assembly '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454000797458, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger, from path: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454000811625, vstest.console.dll, MetadataReaderExtensionsHelper: Discovering extensions inside assembly 'Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' file path '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll' +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454000973291, vstest.console.dll, TestPluginCache: Discovered the extensions using extension path ''. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454000984625, vstest.console.dll, TestPluginCache: Discoverers are ''. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454000989708, vstest.console.dll, TestPluginCache: Executors are ''. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454000993958, vstest.console.dll, TestPluginCache: Executors2 are ''. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454000998041, vstest.console.dll, TestPluginCache: Setting providers are ''. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454001002250, vstest.console.dll, TestPluginCache: Loggers are ''. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454001051666, vstest.console.dll, TestPluginCache: TestHosts are 'HostProvider://DefaultTestHost,HostProvider://DotnetTestHost'. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.561, 236454001057000, vstest.console.dll, TestPluginCache: DataCollectors are ''. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.565, 236454005064208, vstest.console.dll, RunTestsArgumentProcessor:Execute: Test run is starting. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.565, 236454005104458, vstest.console.dll, RunTestsArgumentProcessor:Execute: Queuing Test run. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.565, 236454005174250, vstest.console.dll, TestRequestManager.RunTests: run tests started. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.565, 236454005654458, vstest.console.dll, AssemblyMetadataProvider.GetFrameworkName: Determined framework:'.NETCoreApp,Version=v10.0' for source: '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll' +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.565, 236454005712458, vstest.console.dll, Determined framework for all sources: .NETCoreApp,Version=v10.0 +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.566, 236454006327875, vstest.console.dll, TestRequestManager.UpdateRunSettingsIfRequired: Default architecture: ARM64 IsDefaultTargetArchitecture: True, Current process architecture: ARM64 OperatingSystem: OSX. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.567, 236454007010708, vstest.console.dll, AssemblyMetadataProvider.GetArchitecture: Determined architecture:AnyCPU info for assembly: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.567, 236454007046583, vstest.console.dll, Determined platform for source '/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll' was AnyCPU and it will use the default plaform ARM64. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.567, 236454007056375, vstest.console.dll, None of the sources provided any runnable platform, using the default platform: ARM64 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.567, 236454007114041, vstest.console.dll, Platform was updated to 'ARM64'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.567, 236454007730541, vstest.console.dll, Compatible sources list: +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.567, 236454007742041, vstest.console.dll, /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.568, 236454008626708, vstest.console.dll, InferRunSettingsHelper.IsTestSettingsEnabled: Unable to navigate to RunSettings/MSTest. Current node: RunSettings +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008810333, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Resolving assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008824583, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008838541, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Fakes.dll', returning. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008846666, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Fakes.exe', returning. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008851833, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Searching in: '/usr/local/share/dotnet/sdk/10.0.100'. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008860041, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Microsoft.VisualStudio.TestPlatform.Fakes.dll', returning. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008866333, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Microsoft.VisualStudio.TestPlatform.Fakes.exe', returning. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008870833, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.VisualStudio.TestPlatform.Fakes: Failed to load assembly. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454008977416, vstest.console.dll, Failed to load assembly Microsoft.VisualStudio.TestPlatform.Fakes, Version=18.0.0.0, Culture=neutral. Reason:System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualStudio.TestPlatform.Fakes, Version=18.0.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified. + +File name: 'Microsoft.VisualStudio.TestPlatform.Fakes, Version=18.0.0.0, Culture=neutral, PublicKeyToken=null' + at System.Reflection.RuntimeAssembly.InternalLoad(AssemblyName assemblyName, StackCrawlMark& stackMark, AssemblyLoadContext assemblyLoadContext, RuntimeAssembly requestingAssembly, Boolean throwOnFileNotFound) + at System.Reflection.Assembly.Load(AssemblyName assemblyRef) + at Microsoft.VisualStudio.TestPlatform.Common.Utilities.FakesUtilities.LoadTestPlatformAssembly() in /_/src/vstest/src/Microsoft.TestPlatform.Common/Utilities/FakesUtilities.cs:line 200 +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454009350250, vstest.console.dll, TestPluginCache: Update extensions started. Skip filter = False +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454009705958, vstest.console.dll, TestPluginCache: Using directories for assembly resolution '/Users/mastermito/.nuget/packages/coverlet.collector/6.0.4/build/netstandard2.0'. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.569, 236454009716541, vstest.console.dll, TestPluginCache: Updated the available extensions to '/Users/mastermito/.nuget/packages/coverlet.collector/6.0.4/build/netstandard2.0/coverlet.collector.dll'. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.573, 236454013361708, vstest.console.dll, TestEngine: Initializing Parallel Execution as MaxCpuCount is set to: 1 +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.574, 236454013802958, vstest.console.dll, TestPluginManager.CreateTestExtension: Attempting to load test extension: Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Hosting.DefaultTestHostManager +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.574, 236454013895250, vstest.console.dll, TestPluginManager.CreateTestExtension: Attempting to load test extension: Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Hosting.DotnetTestHostManager +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.574, 236454013954666, vstest.console.dll, TestHostManagerCallbacks.ctor: Forwarding output is enabled. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.574, 236454014064250, vstest.console.dll, InferRunSettingsHelper.IsTestSettingsEnabled: Unable to navigate to RunSettings/MSTest. Current node: RunSettings +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.574, 236454014206791, vstest.console.dll, ParallelOperationManager.ClearSlots: Clearing all slots. Slots should accept more work: True +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.575, 236454014793833, vstest.console.dll, ParallelOperationManager.SetOccupiedSlotCount: Setting slot counts AvailableSlotCount = 1, OccupiedSlotCount = 0. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.575, 236454014910166, vstest.console.dll, Occupied slots: + +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.576, 236454016134416, vstest.console.dll, TestEngine.GetExecutionManager: Chosen execution manager 'Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Client.Parallel.ParallelProxyExecutionManager, Microsoft.TestPlatform.CrossPlatEngine, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ParallelLevel '1'. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.576, 236454016173125, vstest.console.dll, TestPlatform.GetSkipDefaultAdapters: Not skipping default adapters SkipDefaultAdapters was false. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.576, 236454016197041, vstest.console.dll, TestRunRequest.ExecuteAsync: Creating test run request. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.576, 236454016269750, vstest.console.dll, TestRunRequest.ExecuteAsync: Starting. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.576, 236454016496750, vstest.console.dll, TestRunRequest.ExecuteAsync: Starting run with settings:TestRunCriteria: + KeepAlive=False,FrequencyOfRunStatsChangeEvent=10,RunStatsChangeEventTimeout=00:00:01.5000000,TestCaseFilter=CreateClub_WithAdminRole_ReturnsCreated,TestExecutorLauncher= + Settingsxml= + + /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/TestResults + ARM64 + .NETCoreApp,Version=v10.0 + /Users/mastermito/.nuget/packages/coverlet.collector/6.0.4/build/netstandard2.0/ + False + False + + + + + + normal + + + + + minimal + + + + + + +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.576, 236454016510666, vstest.console.dll, TestRunRequest.ExecuteAsync: Wait for the first run request is over. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.576, 236454016583750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.TestRunStart: Invoking callbacks was skipped because there are no subscribers. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.577, 236454016790791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunStart: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454016951541, vstest.console.dll, ParallelProxyExecutionManager: Start execution. Total sources: 1 +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017054625, vstest.console.dll, ParallelOperationManager.StartWork: Starting adding 1 workloads. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017068333, vstest.console.dll, ParallelOperationManager.ClearSlots: Clearing all slots. Slots should accept more work: True +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017086208, vstest.console.dll, ParallelOperationManager.SetOccupiedSlotCount: Setting slot counts AvailableSlotCount = 1, OccupiedSlotCount = 0. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017093375, vstest.console.dll, Occupied slots: + +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017507958, vstest.console.dll, TestHostManagerCallbacks.ctor: Forwarding output is enabled. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017572500, vstest.console.dll, TestRequestSender is acting as server. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017645875, vstest.console.dll, ParallelOperationManager.RunWorkInParallel: Adding 1 workload to slot, remaining workloads 0. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017653583, vstest.console.dll, ParallelOperationManager.SetOccupiedSlotCount: Setting slot counts AvailableSlotCount = 0, OccupiedSlotCount = 1. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.577, 236454017674833, vstest.console.dll, Occupied slots: +0: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.578, 236454018055416, vstest.console.dll, ParallelOperationManager.RunWorkInParallel: Started host in slot number 0 for work (source): /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.578, 236454018583458, vstest.console.dll, ParallelOperationManager.RunWorkInParallel: We started 1 work items, which is the max parallel level. Won't start more work. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.578, 236454018601333, vstest.console.dll, ParallelOperationManager.RunWorkInParallel: We started 1 work items in here, returning True. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:46.578, 236454018609416, vstest.console.dll, TestRunRequest.ExecuteAsync: Started. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.578, 236454018650541, vstest.console.dll, ParallelProxyExecutionManager.StartTestRunOnConcurrentManager: Initializing uninitialized client. Started clients: 0 +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.578, 236454018697791, vstest.console.dll, ParallelProxyExecutionManager.StartTestRunOnConcurrentManager: Initializing test run. Started clients: 0 +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.578, 236454018734000, vstest.console.dll, ProxyExecutionManager: Test host is always Lazy initialize. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:46.579, 236454018818125, vstest.console.dll, TestRunRequest.WaitForCompletion: Waiting with timeout -1. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.579, 236454018822041, vstest.console.dll, TestRequestSender.InitializeCommunication: initialize communication. +TpTrace Information: 0 : 54517, 5, 2026/03/18, 15:19:46.584, 236454024077083, vstest.console.dll, SocketServer.Start: Listening on endpoint : 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454025899541, vstest.console.dll, DotnetTestHostmanager.GetTestHostProcessStartInfo: Platform environment 'ARM64' target architecture 'ARM64' framework '.NETCoreApp,Version=v10.0' OS 'OSX' +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454025992291, vstest.console.dll, DotnetTestHostmanager.LaunchTestHostAsync: VSTEST_DOTNET_ROOT_PATH=/usr/local/share/dotnet +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026001708, vstest.console.dll, DotnetTestHostmanager.LaunchTestHostAsync: VSTEST_DOTNET_ROOT_ARCHITECTURE=Arm64 +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026050916, vstest.console.dll, DotnetTestHostManager.SetDotnetRootForArchitecture: Adding DOTNET_ROOT_ARM64=/usr/local/share/dotnet to testhost start info. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026116833, vstest.console.dll, DotnetTestHostmanager: Adding --runtimeconfig "/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.runtimeconfig.json" in args +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026130000, vstest.console.dll, DotnetTestHostmanager: Adding --depsfile "/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.deps.json" in args +TpTrace Information: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026158875, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Extensions.DependencyModel: Resolving assembly. +TpTrace Information: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026174375, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Extensions.DependencyModel: Searching in: '/usr/local/share/dotnet/sdk/10.0.100/Extensions'. +TpTrace Information: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026184458, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Extensions.DependencyModel: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Extensions.DependencyModel.dll', returning. +TpTrace Information: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026194791, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Extensions.DependencyModel: Assembly path does not exist: '/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Extensions.DependencyModel.exe', returning. +TpTrace Information: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026199708, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Extensions.DependencyModel: Searching in: '/usr/local/share/dotnet/sdk/10.0.100'. +TpTrace Information: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026288250, vstest.console.dll, AssemblyResolver.OnResolve: Microsoft.Extensions.DependencyModel: Loading assembly '/usr/local/share/dotnet/sdk/10.0.100/Microsoft.Extensions.DependencyModel.dll'. +TpTrace Information: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026428375, vstest.console.dll, AssemblyResolver.OnResolve: Resolved assembly: Microsoft.Extensions.DependencyModel, from path: /usr/local/share/dotnet/sdk/10.0.100/Microsoft.Extensions.DependencyModel.dll +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026557208, vstest.console.dll, DotnetTestHostmanager: Runtimeconfig.dev.json /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.runtimeconfig.dev.json does not exist. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026574375, vstest.console.dll, DotnetTestHostManager: Found testhost.dll in source directory: /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/testhost.dll. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026595625, vstest.console.dll, DotnetTestHostmanager: Current process architetcure 'ARM64' +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026616500, vstest.console.dll, DotnetTestHostmanager.LaunchTestHostAsync: Compatible muxer architecture of running process 'ARM64' and target architecture 'ARM64' +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026622875, vstest.console.dll, DotnetTestHostmanager: Full path of testhost.dll is /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/testhost.dll +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.586, 236454026630541, vstest.console.dll, DotnetTestHostmanager: Full path of host exe is /usr/local/share/dotnet/dotnet +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.587, 236454026958500, vstest.console.dll, DotnetTestHostManager: Starting process '0' with command line '1' and DOTNET environment: DOTNET_ROOT_ARM64=/usr/local/share/dotnet +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.596, 236454036541416, vstest.console.dll, Test Runtime launched +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.596, 236454036599583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: HostProviderEvents.OnHostLaunched: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Client.ProxyOperationManager., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.596, 236454036737708, vstest.console.dll, TestRequestSender.WaitForRequestHandlerConnection: waiting for connection with timeout: 90000. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.668, 236454107864583, vstest.console.dll, TestRequestSender.WaitForRequestHandlerConnection: waiting took 71 ms, with timeout 90000 ms, and result 0, which is success. +TpTrace Verbose: 0 : 54517, 11, 2026/03/18, 15:19:46.668, 236454107864541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: SocketServer: ClientConnected: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender., took 0 ms. +TpTrace Verbose: 0 : 54517, 11, 2026/03/18, 15:19:46.668, 236454107950750, vstest.console.dll, SocketServer.OnClientConnected: Client connected for endPoint: 127.0.0.1:56513, starting MessageLoopAsync: +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.668, 236454108144458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.681, 236454121190666, vstest.console.dll, TestRequestSender.CheckVersionWithTestHost: Sending check version message: {"MessageType":"ProtocolVersion","Payload":7} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.720, 236454159888166, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.720, 236454160371083, vstest.console.dll, TestRequestSender.CheckVersionWithTestHost: onMessageReceived received message: (ProtocolVersion) -> {"MessageType":"ProtocolVersion","Payload":7} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.722, 236454162203625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass29_0., took 1 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.722, 236454162247458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 54 ms +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.722, 236454162298416, vstest.console.dll, TestPluginCache.GetExtensionPaths: Filtered extension paths: +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.722, 236454162325791, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added default extension paths: /usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.Diagnostics.NETCore.Client.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.BlameDataCollector.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.TestPlatform.Extensions.EventLogCollector.dll +/usr/local/share/dotnet/sdk/10.0.100/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger.dll +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.722, 236454162339916, vstest.console.dll, TestPluginCache.GetExtensionPaths: Added unfilterableExtensionPaths: +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.724, 236454163834708, vstest.console.dll, TestRequestSender.InitializeExecution: Sending initialize execution with message: {"Version":7,"MessageType":"TestExecution.Initialize","Payload":["/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll"]} +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.724, 236454163901458, vstest.console.dll, ParallelProxyExecutionManager.StartTestRunOnConcurrentManager: Execution starting. Started clients: 1 +TpTrace Warning: 0 : 54517, 5, 2026/03/18, 15:19:46.724, 236454164085583, vstest.console.dll, InferRunSettingsHelper.MakeRunsettingsCompatible: Removing the following settings: TargetPlatform from RunSettings file. To use those settings please move to latest version of Microsoft.NET.Test.Sdk +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.725, 236454164893375, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.725, 236454165133208, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"Die TestHost-Diagnose wird in der Datei /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/diag.host.26-03-18_15-19-46_58589_5.txt protokolliert."}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.726, 236454166382666, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.726, 236454166470166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:46.726, 236454166481833, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.726, 236454166491458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 1 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.726, 236454166504041, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 4 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.726, 236454166576375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.726, 236454166633583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.727, 236454166787583, vstest.console.dll, TestRequestSender.StartTestRun: Sending test run with message: {"Version":7,"MessageType":"TestExecution.StartWithSources","Payload":{"AdapterSourceMap":{"_none_":["/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll"]},"RunSettings":"\n \n /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/TestResults\n .NETCoreApp,Version=v10.0\n /Users/mastermito/.nuget/packages/coverlet.collector/6.0.4/build/netstandard2.0/\n False\n False\n \n \n \n \n \n normal\n \n \n \n \n minimal\n \n \n \n \n","TestExecutionContext":{"FrequencyOfRunStatsChangeEvent":10,"RunStatsChangeEventTimeout":"00:00:01.5000000","InIsolation":false,"KeepAlive":false,"AreTestCaseLevelEventsRequired":false,"IsDebug":false,"TestCaseFilter":"CreateClub_WithAdminRole_ReturnsCreated","FilterOptions":null},"Package":null}} +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.727, 236454166827666, vstest.console.dll, ParallelProxyExecutionManager.StartTestRunOnConcurrentManager: Execution started. Started clients: 1 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.787, 236454226772875, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.787, 236454226879291, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.00] xUnit.net VSTest Adapter v3.1.4+50e68bbb8b (64-bit .NET 10.0.0)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.787, 236454226988666, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.787, 236454227015000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:46.787, 236454227022208, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.787, 236454227033041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.787, 236454227040833, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 60 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.787, 236454227046708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.787, 236454227092708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.823, 236454263111166, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.823, 236454263210541, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.03] Discovering: WorkClub.Tests.Integration"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.823, 236454263285916, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.823, 236454263308708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:46.823, 236454263315500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.823, 236454263322000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.823, 236454263334083, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 36 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.823, 236454263358541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.823, 236454263398000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.839, 236454279064333, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.839, 236454279153708, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.05] Discovered: WorkClub.Tests.Integration"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.839, 236454279212583, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.839, 236454279241916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:46.839, 236454279248500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.839, 236454279255000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.839, 236454279262208, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 15 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.839, 236454279302791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.839, 236454279380250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.848, 236454288293833, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.848, 236454288361916, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:00.06] Starting: WorkClub.Tests.Integration"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.848, 236454288406500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.848, 236454288422000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:46.848, 236454288427958, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.848, 236454288433625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:46.848, 236454288439250, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 9 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.848, 236454288451583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.848, 236454288481666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454338943333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:00.02] Connected to Docker: +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339084375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339110041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Host: unix:///var/run/docker.sock +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339128875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339124208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339136333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Server Version: 29.2.1 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339184250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339191958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339209583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Kernel Version: 6.12.72-linuxkit +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339216000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339224000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339240833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: API Version: 1.53 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339241291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339246916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339259166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339263916, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Operating System: Docker Desktop +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339301791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339307208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Total Memory: 7.65 GB +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339283291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.899, 236454339315583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339355208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339374750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339388416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339417958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339453083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339471541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339483541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.899, 236454339495666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.990, 236454430191291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:00.11] Docker container 50059267ddbc created +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:46.990, 236454430295916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.990, 236454430360375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:46.990, 236454430380875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.008, 236454448054666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:00.13] Start Docker container 50059267ddbc +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.008, 236454448310791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.009, 236454448796875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.009, 236454448885250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.111, 236454551697875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:00.23] Wait for Docker container 50059267ddbc to complete readiness checks +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.112, 236454551808625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.112, 236454551869166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.112, 236454551928625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.115, 236454554772625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:00.24] Docker container 50059267ddbc ready +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.115, 236454554853166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.115, 236454554928958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.115, 236454554955750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.174, 236454613871916, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:00.30] Docker container 506c34d299ad created +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.174, 236454613963541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.174, 236454614037000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.174, 236454614104833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.181, 236454621260041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:00.30] Start Docker container 506c34d299ad +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.181, 236454621350625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.181, 236454621447625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.181, 236454621551750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.291, 236454731460375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:00.41] Wait for Docker container 506c34d299ad to complete readiness checks +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:47.291, 236454731650541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.291, 236454731737125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:47.292, 236454731804583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:47.849, 236455289496708, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 1001 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:48.269, 236455709377333, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:48.269, 236455709531291, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestExecution.StatsChange","Payload":{"NewTestResults":[],"TestRunStatistics":{"ExecutedTests":0,"Stats":{}},"ActiveTests":[{"Id":"a8c49312-90f7-774d-ef37-0a55d289cbae","FullyQualifiedName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","DisplayName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","ExecutorUri":"executor://xunit/VsTestRunner3/netcore/","Source":"/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll","CodeFilePath":null,"LineNumber":0,"Properties":[{"Key":{"Id":"XunitTestCaseExplicit","Label":"xUnit.net Test Case Explicit Flag","Category":"","Description":"","Attributes":0,"ValueType":"System.Boolean"},"Value":false},{"Key":{"Id":"TestCase.ManagedType","Label":"ManagedType","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests"},{"Key":{"Id":"TestCase.ManagedMethod","Label":"ManagedMethod","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"CreateClub_WithAdminRole_ReturnsCreated"},{"Key":{"Id":"XunitTestCaseUniqueID","Label":"xUnit.net Test Case Unique ID","Category":"","Description":"","Attributes":0,"ValueType":"System.String"},"Value":"d0865975d8177c51f513124eed31b3647a0ba8c3"}]}]}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:48.276, 236455715902833, vstest.console.dll, TestRunRequest:SendTestRunStatsChange: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:48.276, 236455715981250, vstest.console.dll, InProgress is WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:48.276, 236455716024458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.RunStatsChanged: Invoking callbacks was skipped because there are no subscribers. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:48.276, 236455716041333, vstest.console.dll, TestRunRequest:SendTestRunStatsChange: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:48.276, 236455716050875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 6 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:48.276, 236455716061291, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 426 ms +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.311, 236455751540083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:01.43] Docker container 506c34d299ad ready +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.311, 236455751620458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.311, 236455751655083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.311, 236455751695166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456128784041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: fail: Microsoft.EntityFrameworkCore.Database.Command[20102] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456128888291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456128903250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Failed executing DbCommand (9ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456128914208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456128923083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: SELECT "MigrationId", "ProductVersion" +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456128931583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456128940166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: FROM "__EFMigrationsHistory" +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456128955541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456128990083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456129013750, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ORDER BY "MigrationId"; +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456128997666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.689, 236456129027166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456129044291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456129056000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456129072000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456129084250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456129096000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456129105833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456129114583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.689, 236456129122458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132030583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: fail: WorkClub.Infrastructure.Data.Interceptors.TenantDbTransactionInterceptor[0] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132117708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132129541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Command failed: SELECT "MigrationId", "ProductVersion" +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132139750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132150000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: FROM "__EFMigrationsHistory" +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132167625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132201000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132216791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132221166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132249625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ORDER BY "MigrationId"; +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132303666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132328958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132343625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132353166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132362583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132364750, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Npgsql.PostgresException (0x80004005): 42P01: relation "__EFMigrationsHistory" does not exist +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132372583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132377375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132386958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132386625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132392291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: POSITION: 45 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132405875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132406958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132417583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132419125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132424375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132432416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132435500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132445541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132446875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132454791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132459833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132467375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132470791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132479500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132483333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132486791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132492750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132495000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult() +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132502375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132505916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132515333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132525166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132532291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132543375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132545208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132551041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132559666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132560041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132568333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132572291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132580041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132582458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(CommandBehavior behavior) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132589500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132593541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132602250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132602708, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132610875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132614666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132621166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132623625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReader(RelationalCommandParameterObject parameterObject) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132632458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132634958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132641916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132647000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Exception data: +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132652333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132657541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132665041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132666041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Severity: ERROR +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132673458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132679333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132685458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132686833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: SqlState: 42P01 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132695875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132699750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132704625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132707458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: MessageText: relation "__EFMigrationsHistory" does not exist +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132714000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132715916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132718833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Position: 45 +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132725583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132728291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132730291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: File: parse_relation.c +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.692, 236456132740250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.692, 236456132743916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.693, 236456132750708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.693, 236456132752916, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Line: 1449 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.693, 236456132760083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.693, 236456132764208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.693, 236456132772916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.693, 236456132775750, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Routine: parserOpenTable +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.693, 236456132782958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.693, 236456132786875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.693, 236456132793416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.693, 236456132803250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.693, 236456132809583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.693, 236456132817958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.733, 236456173011833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.733, 236456173116833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.733, 236456173131333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (3ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.733, 236456173142500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.733, 236456173149833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: SELECT 1 +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.733, 236456173158916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.733, 236456173179708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.733, 236456173274833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.733, 236456173314708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.733, 236456173335916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.733, 236456173350000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.733, 236456173360791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192781500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192858000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192875958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (2ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192886250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192892583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE TABLE IF NOT EXISTS "__EFMigrationsHistory" ( +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192899708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192905875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "MigrationId" character varying(150) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192912041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192917166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "ProductVersion" character varying(32) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192922750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192929833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CONSTRAINT "PK___EFMigrationsHistory" PRIMARY KEY ("MigrationId") +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192936666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192941541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ); +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.753, 236456192949333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456192980375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193045791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193067750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193079958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193089708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193100458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193109000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193120083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193129666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193138625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193146250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193154375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193163125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.753, 236456193171083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456195979875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Migrations[20411] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196017041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196028250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Acquiring an exclusive lock for migration application. See https://aka.ms/efcore-docs-migrations-lock for more information if this takes too long. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.756, 236456196033625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196043250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.756, 236456196055125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.756, 236456196066375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.756, 236456196076083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196655166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196685916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196700875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196710708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196724500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: LOCK TABLE "__EFMigrationsHistory" IN ACCESS EXCLUSIVE MODE +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.756, 236456196709041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.756, 236456196732541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456196759208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456196847083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456196866541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456196879708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456196890125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197440625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197461791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197469250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197477333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197500166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197480750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197541000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: SELECT "MigrationId", "ProductVersion" +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197563625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197515791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197572666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: FROM "__EFMigrationsHistory" +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197615750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197627000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197637458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ORDER BY "MigrationId"; +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197637750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.757, 236456197645041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197655041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197664125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197672666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197680541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.757, 236456197691541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.760, 236456200747666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Migrations[20402] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.761, 236456200782250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.761, 236456200790333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Applying migration '20260303132952_InitialCreate'. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.761, 236456200797708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.761, 236456200802250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.761, 236456200823166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.761, 236456200835166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.761, 236456200843333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456208971666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209036583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209047208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (2ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209062833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209069250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE TABLE clubs ( +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209076541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209082208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Id" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209088875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209093666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "TenantId" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209099625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209104500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Name" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209112125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209117833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "SportType" integer NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209123458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209128416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Description" character varying(2000), +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209135416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209140666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "CreatedAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209147625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209152458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "UpdatedAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209160666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209165583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CONSTRAINT "PK_clubs" PRIMARY KEY ("Id") +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209133166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209170625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209239166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209301583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209341000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209380041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209395500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.769, 236456209394083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209407750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209421500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209434583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209444208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209452000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209462375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209472000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209480916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209489708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209500666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209510375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209520458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209528916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209540375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209549333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209557458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209563500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209570958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.769, 236456209577583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210416125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210468250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210482958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210493625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210494541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210527500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210540291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE TABLE members ( +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210544666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210562000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210571791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210577416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Id" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210594541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210601958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210618833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "TenantId" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210621250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210630125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210642541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210646375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "ExternalUserId" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210658833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210669666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210683833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210688083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "DisplayName" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210705125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210713250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.770, 236456210726208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210727666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Email" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210738833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.770, 236456210744875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Role" integer NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210750666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210755166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "ClubId" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210761291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210759416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210767041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "CreatedAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210789583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210800791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210802250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210815000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210838791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210818500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "UpdatedAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210847708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210901000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210925000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CONSTRAINT "PK_members" PRIMARY KEY ("Id") +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210925708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210937291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210956250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210958250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456210980083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211000208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456210980708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211011625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211033291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211045166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211056916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211065875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211073541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211081583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211379750, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211392916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211398375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211404291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211409250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE TABLE shift_signups ( +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211413208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211434875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211414333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211480166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Id" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211492375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211451000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211499208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "TenantId" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211519750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211529625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211544708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211569000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211583875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211547291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "ShiftId" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211592375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211603291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211616375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211621125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "MemberId" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211663416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211689958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211666416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211705916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211707708, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "SignedUpAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211717708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211720958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211730416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211733958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CONSTRAINT "PK_shift_signups" PRIMARY KEY ("Id") +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.771, 236456211744791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.772, 236456211765583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.771, 236456211745875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.772, 236456211774083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.772, 236456211838833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.772, 236456211858416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.772, 236456211866583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.772, 236456211877916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.772, 236456211887041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213003791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213029583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213039750, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (2ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213049041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213052875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213061166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE TABLE shifts ( +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213067791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213092000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213070291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213211708, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Id" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213100958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213250000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213266666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213281750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213287208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "TenantId" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213292375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213296916, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Title" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213305125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213309083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Description" character varying(2000), +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213316583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213320750, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Location" character varying(500), +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213326791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213330791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "StartTime" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213335875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213339708, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "EndTime" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213344791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213348958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Capacity" integer NOT NULL DEFAULT 1, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213354041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213365791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "ClubId" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213371708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213367000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213450291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "CreatedById" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213454500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213462708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213470125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "CreatedAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213474916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213477041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213479041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "UpdatedAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213484916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213487791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213491375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CONSTRAINT "PK_shifts" PRIMARY KEY ("Id") +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213500333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213502291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213509625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213511250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ); +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.773, 236456213521833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213525250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213538916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213550250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213556625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213564791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213572916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213580750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213591500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213598541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213605333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213612375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213642541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213677000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213684875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213692375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213702000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213710708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213719291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213729041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213735875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.773, 236456213745250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456213752791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214344000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214366541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214373166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214386166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214391500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE TABLE work_items ( +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214398541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214399041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214448208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Id" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214462500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214432875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214468541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "TenantId" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214525916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214532125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Title" character varying(200) NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214540625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214540375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214546375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Description" character varying(2000), +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214599250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214615500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214626125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214634708, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "Status" integer NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214649166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214657333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214674208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214678041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "AssigneeId" uuid, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214696041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214700708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214720166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "CreatedById" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.774, 236456214720666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.774, 236456214734583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456214811500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "ClubId" uuid NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456214833000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456214844958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "DueDate" timestamp with time zone, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456214789833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456214861458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456214884833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456214891958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "CreatedAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456214908291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456214972416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456214981750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215002375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: "UpdatedAt" timestamp with time zone NOT NULL, +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215012625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215019375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CONSTRAINT "PK_work_items" PRIMARY KEY ("Id") +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215026541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215031500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ); +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215043166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456214985500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215076250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215084083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215091375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215107833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215108458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215127625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215135250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215150208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215153916, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_clubs_tenant_id ON clubs ("TenantId"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215171125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215179250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215200125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215218166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215226208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215236916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215244791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215251166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215257875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215264625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215271541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215279000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215293458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215303875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215310833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215322541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215329416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215337375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215343791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215379000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.775, 236456215484583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.775, 236456215741458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456215762083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456215767875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456215775500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456215778375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456215783958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_members_club_id ON members ("ClubId"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456215806125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456215815750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456215824125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456215835833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456215842583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456215849833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456216279333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456216302250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456216309166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456216315250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456216317958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456216336083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456216339041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_members_tenant_external_user ON members ("TenantId", "ExternalUserId"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456216355875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.776, 236456216363250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456216375791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456216394875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.776, 236456216404458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456216903791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456216927916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456216937000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456216943333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456216948083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_members_tenant_id ON members ("TenantId"); +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456216964291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456216974916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456216998791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217008375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217020458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217031500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217039291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456217413333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456217425208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456217430541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456217438958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456217445625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_shift_signups_shift_id ON shift_signups ("ShiftId"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217448250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217474625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.777, 236456217451083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217487833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217634583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217659291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.777, 236456217668333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456217982666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218008250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218016125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218025375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218024416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218055000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218083625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218093333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218032166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE UNIQUE INDEX ix_shift_signups_shift_member ON shift_signups ("ShiftId", "MemberId"); +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218119041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218134125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218149000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218523791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218534875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218540375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218547166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218548625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218551875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_shift_signups_tenant_id ON shift_signups ("TenantId"); +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.778, 236456218564458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218608916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218635541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218645083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218655458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.778, 236456218662958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.779, 236456219220083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.779, 236456219234416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.779, 236456219239500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.779, 236456219246791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.779, 236456219251875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_shifts_club_id ON shifts ("ClubId"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.779, 236456219253750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.779, 236456219258291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.779, 236456219285333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.779, 236456219302666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.779, 236456219311416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.779, 236456219318875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.779, 236456219328000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456219961041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456219976250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456219984666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (1ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456219993166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456219993416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220020375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456220029041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_shifts_start_time ON shifts ("StartTime"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220045583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456220052875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220064291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220134375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220143750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456220478041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456220493458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456220498541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456220511916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220512791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456220518250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_shifts_tenant_id ON shifts ("TenantId"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220540125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.780, 236456220548958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220555666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220564541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220576458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.780, 236456220583916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456220984416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456220999750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221004958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221010333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221015791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221017541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_work_items_assignee_id ON work_items ("AssigneeId"); +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221031833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221032500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221044541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221053125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221062208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221068625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221417541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221429791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221435291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221440750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221445125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_work_items_club_id ON work_items ("ClubId"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221445583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.781, 236456221452208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221462791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221473416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221480416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221489500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.781, 236456221497583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456221858583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456221868583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456221873125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456221880125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456221884791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_work_items_status ON work_items ("Status"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456221888666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456221891333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456221919250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456221958875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456221986083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456222000416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456222008666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456222287875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456222304041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456222308791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456222315291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456222318541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456222321000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: CREATE INDEX ix_work_items_tenant_id ON work_items ("TenantId"); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456222341875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.782, 236456222355250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456222369500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456222386291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456222393916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.782, 236456222404750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.783, 236456222774916, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.783, 236456222791458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.783, 236456222801583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (0ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.783, 236456222807250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.783, 236456222811666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: INSERT INTO "__EFMigrationsHistory" ("MigrationId", "ProductVersion") +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.783, 236456222811375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.783, 236456222816791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.783, 236456222827708, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: VALUES ('20260303132952_InitialCreate', '10.0.3'); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.783, 236456222828166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.783, 236456222832583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.783, 236456222846041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.783, 236456222855500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.783, 236456222862791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.783, 236456222870000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.783, 236456222880250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.783, 236456222887666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298015791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.Hosting.Lifetime[0] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298109083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298124333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Application started. Press Ctrl+C to shut down. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298133666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298140416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.Hosting.Lifetime[0] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298145791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298182916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298147458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298285500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Hosting environment: Test +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298313500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298324041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.Hosting.Lifetime[0] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298349416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298368625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Content root path: /Users/mastermito/Dev/opencode/backend/WorkClub.Api +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.858, 236456298378958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298201416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298479333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298502041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298512500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298525541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298533291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298542000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298549833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298560291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.858, 236456298569666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.898, 236456338430291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: warn: Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware[3] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.898, 236456338497291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.898, 236456338509375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Failed to determine the https port for redirect. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.898, 236456338518125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.898, 236456338536250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.898, 236456338576166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.898, 236456338589041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.898, 236456338606916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.905, 236456344866916, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: WorkClub.Api.Middleware.TenantValidationMiddleware[0] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.905, 236456344931083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.905, 236456344940875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: TenantValidationMiddleware: Processing request for /api/admin/clubs +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.905, 236456344949125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.905, 236456344955083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: WorkClub.Api.Middleware.TenantValidationMiddleware[0] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.905, 236456344960708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.905, 236456344962208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.905, 236456345005958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.905, 236456345006375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: TenantValidationMiddleware: Exempting /api/admin/clubs from tenant validation +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.905, 236456345059708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.905, 236456345026708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.905, 236456345124208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.905, 236456345137208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.905, 236456345146666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.905, 236456345168083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.905, 236456345176250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.927, 236456366981041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.EntityFrameworkCore.Database.Command[20101] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.927, 236456367061791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.927, 236456367072625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Executed DbCommand (3ms) [Parameters=[], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.927, 236456367080458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.927, 236456367085583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: SET LOCAL ROLE app_admin +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.927, 236456367091458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.927, 236456367159750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.927, 236456367194458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.927, 236456367211791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.927, 236456367220333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.927, 236456367228875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.927, 236456367235625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.958, 236456398586375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: warn: WorkClub.Infrastructure.Data.Interceptors.SaveChangesTenantInterceptor[0] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.958, 236456398661416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.958, 236456398673750, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: No tenant context available for SaveChanges +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.958, 236456398689583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.958, 236456398696666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.959, 236456398753583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.959, 236456398769791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.959, 236456398779583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.998, 236456438668791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: fail: Microsoft.EntityFrameworkCore.Database.Command[20102] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.998, 236456438719333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.998, 236456438739000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.998, 236456438747833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Failed executing DbCommand (14ms) [Parameters=[@p0='?' (DbType = Guid), @p1='?' (DbType = DateTime), @p2='?', @p3='?', @p4='?' (DbType = Int32), @p5='?', @p6='?' (DbType = DateTime)], CommandType='Text', CommandTimeout='30'] +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456438758333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456438761958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456438773000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456438773458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: INSERT INTO clubs ("Id", "CreatedAt", "Description", "Name", "SportType", "TenantId", "UpdatedAt") +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456438787083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456438787416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456438798166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456438800208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: VALUES (@p0, @p1, @p2, @p3, @p4, @p5, @p6); +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456438812500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456438865750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456438879750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456438888416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439236875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: fail: WorkClub.Infrastructure.Data.Interceptors.TenantDbTransactionInterceptor[0] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439248083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439253708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439253875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Command failed: INSERT INTO clubs ("Id", "CreatedAt", "Description", "Name", "SportType", "TenantId", "UpdatedAt") +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439268416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439270458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439274000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: VALUES (@p0, @p1, @p2, @p3, @p4, @p5, @p6); +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439284375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439285583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439293791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439295666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439306666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439307833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Npgsql.PostgresException (0x80004005): 42501: permission denied for table clubs +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439315500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439319291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439327833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439329041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439339333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439342666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439353166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439391416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439418208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439424000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439426041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439453041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439507125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439542000, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439527791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439555041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439576625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439584208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439601666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439610416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439613125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439651833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439633875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439664875, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439685791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439690208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439701250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439703583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439707041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439719625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Exception data: +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:48.999, 236456439722375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439725041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439736041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Severity: ERROR +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439741125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:48.999, 236456439745958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: SqlState: 42501 +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439750750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439753375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439773625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439755625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: MessageText: permission denied for table clubs +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439784291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439792000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439802041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439805083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: File: aclchk.c +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439814041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439816250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439823791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439826541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Line: 2812 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439833416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439837458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439847541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Routine: aclcheck_error +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.000, 236456439852500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439859333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439881083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439910916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439922541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439930000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439942208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439949375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439957125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439965833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439972250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439981541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439988083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.000, 236456439997750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456445918083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: fail: Microsoft.EntityFrameworkCore.Update[10000] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456445971333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456445981833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: An exception occurred in the database while saving changes for context type 'WorkClub.Infrastructure.Data.AppDbContext'. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456445993583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446005416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while saving the entity changes. See the inner exception for details. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446004541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446014083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446046875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446056416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ---> Npgsql.PostgresException (0x80004005): 42501: permission denied for table clubs +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446075333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446109000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446088500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446142416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446165291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446201833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446144583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446216041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446222875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446232208, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446235166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446238125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446248375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446249375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446253458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446263250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446264541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446268708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446277458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446291791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446292625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446300666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446304625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446314625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446315041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446326166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446324875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446331250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446339333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446342250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446348875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446352083, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446361250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446363250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446369166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446372750, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446379458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446383333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446392125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446392791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446400875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446403958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446412208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446413541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Exception data: +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446424000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446426250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446432666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446435541, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Severity: ERROR +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446445583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446446791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446453875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446458375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: SqlState: 42501 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446465250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446468583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446477041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446478291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: MessageText: permission denied for table clubs +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446486000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446491541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446502541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446511125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: File: aclchk.c +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446511291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446517375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446523500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446527250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Line: 2812 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446534500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446538750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446545000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446561791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446567916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446548458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Routine: aclcheck_error +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446589916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446574208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446597041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: --- End of inner exception stack trace --- +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446606291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446608750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446616041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446619291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446625625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446630541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446637875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446640375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446647375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446651041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446660000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446662250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446670625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446674250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446681083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446685375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446693375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446698291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446704916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446706416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Storage.RelationalDatabase.SaveChangesAsync(IList`1 entries, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446714166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446717458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446725500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446736958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.006, 236456446738083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.006, 236456446743208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446750458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446753291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(StateManager stateManager, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446760083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446763750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446770041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446773500, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446780083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446784125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446811625, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446817125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446794208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446821291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while saving the entity changes. See the inner exception for details. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446849833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446856166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446869083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446871166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: ---> Npgsql.PostgresException (0x80004005): 42501: permission denied for table clubs +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446889750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446898083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446919583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446925833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446932416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446940041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446955083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446956583, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446971250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446980958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456446993750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456446995458, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447027916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447032333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447039250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447015333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447062666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447044416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447124416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447075416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447132958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447151375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447183625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447202083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447156416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447208791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447213375, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.NpgsqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447223708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447223916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447232125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447234833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447244208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447245625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447252583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447260500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447267500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447268166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447275416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447277583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447283625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447286166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447293708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447296125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447302000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447304833, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Exception data: +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447311666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447314416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447319875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447340833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447326125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Severity: ERROR +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447435083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447442125, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: SqlState: 42501 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447375333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447448458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447478666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: MessageText: permission denied for table clubs +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447463500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447492458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447500500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447503166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: File: aclchk.c +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447514416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447515583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447523166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447524708, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Line: 2812 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447533416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447534750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447539833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447543166, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Routine: aclcheck_error +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447550041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447554000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447559416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447562250, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: --- End of inner exception stack trace --- +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447571583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447576833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447582000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447585333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447592458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447594875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447602125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447605041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447610375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447613833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447620291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447629041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447635083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447641541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447651750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447656333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447657833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447662958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447668375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447671416, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447677875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447681625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447687000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447700458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447689791, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.Storage.RelationalDatabase.SaveChangesAsync(IList`1 entries, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447707666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447711625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447718916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447720333, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.007, 236456447729375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.008, 236456447756958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(StateManager stateManager, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.007, 236456447729958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.008, 236456447765583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.008, 236456447850666, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.008, 236456447857958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.008, 236456447862500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.008, 236456447870916, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.008, 236456447893291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.008, 236456447878041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.008, 236456447933541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.008, 236456447942791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.008, 236456447954041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.008, 236456447961666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.008, 236456447970458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.008, 236456447977291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456456975500, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457054791, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":2,"Message":"[xUnit.net 00:00:02.23] WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated [FAIL]"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457154625, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457171916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457178500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457183500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457190583, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 741 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.017, 236456457229000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.017, 236456457248625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457348166, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457375041, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] Microsoft.EntityFrameworkCore.DbUpdateException : An error occurred while saving the entity changes. See the inner exception for details."}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457429041, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457442333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.017, 236456457453750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457453125, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.017, 236456457468750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457476291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457490916, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457499833, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457512958, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] ---- Npgsql.PostgresException : 42501: permission denied for table clubs"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457533500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457542916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457547750, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457552750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.017, 236456457555125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.017, 236456457576416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457559708, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457599250, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457615791, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] Stack Trace:"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457637166, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457645125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457650166, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457659625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.017, 236456457665166, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.017, 236456457671208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.017, 236456457680833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456457914958, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456457932750, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456457961833, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456457976208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456457983916, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456457985750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456457993708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458004583, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458006375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458014458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458027250, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458046500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458056333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458064916, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458067041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458071791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458079958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458081541, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458133541, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458164875, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458195958, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458210916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458218666, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458223708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458231583, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458238083, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458255500, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458261333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458272833, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458280875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458289875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458298708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458318875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458302083, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458338541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458346041, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458354958, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458369583, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalDatabase.SaveChangesAsync(IList`1 entries, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458382916, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458395333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458402500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458406791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458408458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458426083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458411166, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458449750, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458461958, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458487958, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458499083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458506125, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458510291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458514958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458545208, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458532625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458554250, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458599250, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(StateManager stateManager, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458619958, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458630625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458637375, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458642458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458644958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.018, 236456458667416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458650291, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458685750, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458703583, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.018, 236456458739625, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458751041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458756458, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458760750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458769291, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456458770958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458776041, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456458794125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458800750, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458823125, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458833791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458839375, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458843541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458849958, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456458847791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456458871375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458855750, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458913125, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458940166, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458951500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458956666, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456458961750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458962791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456458977666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456458980250, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459006583, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459019125, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(54,0): at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext()"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459042458, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459052333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459059958, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459065208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459065458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459072666, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459094833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459102458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459120666, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459139708, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459150541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459157541, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459162000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459166250, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459171416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459181833, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(56,0): at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext()"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459199291, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459205458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459212166, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459217333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459224208, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459229333, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459239958, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459250875, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459258375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459265000, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459270083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459277458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459282916, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459292541, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.<>c.<b__3_0>d.MoveNext()"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459306625, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459310500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459328000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459314875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459336708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459339625, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459346916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459353250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459375541, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459360500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459400250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459384625, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459411750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459422083, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459427083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459436708, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459448791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459452875, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459460916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459471875, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459477041, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459486625, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459499041, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459502250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459508208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459516791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459519208, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459529083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459532791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459541916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459543916, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459592708, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459618166, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs(49,0): at WorkClub.Api.Services.AdminClubService.CreateClubAsync(CreateClubRequest request)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459647875, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459660666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459665958, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459669625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459671875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.019, 236456459686625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.019, 236456459691125, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459786208, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459795833, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Endpoints/Clubs/AdminClubEndpoints.cs(39,0): at WorkClub.Api.Endpoints.Clubs.AdminClubEndpoints.CreateClub(CreateClubRequest request, AdminClubService adminClubService)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459810875, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459822208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459827708, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456459832083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459833083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456459846875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459852875, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459877500, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459889166, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459903875, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459919458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459925750, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456459927500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459934166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456459950625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459956291, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456459982791, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460000833, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass102_2.<b__2>d.MoveNext()"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460015541, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460024041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460031291, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460034708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460042333, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460047708, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460047708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460057208, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460063000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460072583, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460082500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460086500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460090708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460094125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460113833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460095916, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460135250, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460151458, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/MemberSyncMiddleware.cs(24,0): at WorkClub.Api.Middleware.MemberSyncMiddleware.InvokeAsync(HttpContext context, MemberSyncService memberSyncService)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460182083, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.020, 236456460185291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: [testcontainers.org 00:00:02.14] Delete Docker container 506c34d299ad +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460195458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.020, 236456460199458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460203541, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460213708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460209166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460218750, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460235000, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460230583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460247041, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs(30,0): at WorkClub.Api.Middleware.TenantValidationMiddleware.InvokeAsync(HttpContext context)"}} +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460257666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460272791, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460274541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460284083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460297500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460317416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460299500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460331375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460338333, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460346250, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460358250, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460378208, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460386625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460391041, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460396291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460394833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460406333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460407791, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460418666, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460425625, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460438125, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460447916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460451750, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460455916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460459083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460460541, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460469541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460470708, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460483000, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.TestHost.HttpContextBuilder.<>c__DisplayClass23_0.<g__RunRequestAsync|0>d.MoveNext()"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460493375, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460501625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460505416, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460509458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460514583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460515750, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460539750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460547416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460568666, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460588166, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460598541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460602833, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460607500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460611125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460615416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460647541, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460657625, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.TestHost.ClientHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460633750, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460672250, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460684875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460689000, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460693083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460695625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460698166, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.020, 236456460707083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460710916, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460723125, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Mvc.Testing.Handlers.CookieContainerHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460735375, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460741833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.020, 236456460748875, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460754833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456460756333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460759333, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456460771583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460774416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460785791, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460795000, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460801916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460805958, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456460809333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460809875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456460817958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460819708, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460829583, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460838083, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at System.Net.Http.HttpClient.g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460852583, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460860166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460864375, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460868416, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456460872291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460873708, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456460885083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460886208, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460900416, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/Clubs/AdminClubEndpointsTests.cs(24,0): at WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated()"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460910791, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460918208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460922208, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460926375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460930625, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460935708, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456460935625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460943291, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] --- End of stack trace from previous location ---"}} +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456460959125, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456460983250, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461003583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461007958, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461011791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461016208, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461024958, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461026000, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461031583, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] ----- Inner Stack Trace -----"}} +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461040291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461045625, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461053375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461057208, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461061708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461063708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461081541, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461066125, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461100625, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461116041, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461149291, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461169375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461178250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461204916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461178708, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461224250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461229958, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461237416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461247666, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461270666, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461279375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461283458, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461287875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461292375, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461297458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461304416, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461323833, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461328083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461330875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461341833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461347750, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461362333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461370791, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461390166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461398416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461410833, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461423416, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461450750, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461460833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461465708, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461467916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461470083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461476916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461479583, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461490166, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461499541, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461514833, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461523166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461527416, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461531250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461535125, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461540416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461547416, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461560166, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461566166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461570000, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461573708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461577458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461582375, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461589000, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Npgsql.NpgsqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461600750, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461605916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461609791, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461613625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461617833, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461622208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461625041, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461643166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461655416, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461663375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461677041, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461686041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461690458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461700208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461719708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461705500, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461728333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.021, 236456461733208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.021, 236456461746041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461751458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461769750, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461777750, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461803375, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461813666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461818583, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461822708, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.022, 236456461824875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461851458, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 0 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.022, 236456461865916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461870333, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461899666, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.23] at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461919166, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461929166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461933625, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.022, 236456461936875, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.022, 236456461938375, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.025, 236456465121958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.025, 236456465135875, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 3 ms +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.231, 236456670840041, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: info: Microsoft.Hosting.Lifetime[0] +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.231, 236456670893666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.231, 236456670902291, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: Application is shutting down... +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.231, 236456670913291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRunMessageLoggerProxy.SendMessage: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.Common.Logging.InternalTestLoggerEvents., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.231, 236456670948625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.231, 236456671012333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.231, 236456671070083, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.231, 236456671090208, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.233, 236456673647416, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.233, 236456673697500, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestSession.Message","Payload":{"MessageLevel":0,"Message":"[xUnit.net 00:00:02.44] Finished: WorkClub.Tests.Integration"}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.234, 236456673750708, vstest.console.dll, TestRunRequest:SendTestRunMessage: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.234, 236456673769833, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.LogMessages: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.234, 236456673775750, vstest.console.dll, TestRunRequest:SendTestRunMessage: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.234, 236456673782583, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.234, 236456673788583, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: Polling on remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 after 208 ms +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.234, 236456673790458, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.234, 236456673812291, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunMessage: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.242, 236456681917625, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: NotifyDataAvailable remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.242, 236456682038208, vstest.console.dll, TestRequestSender.OnExecutionMessageReceived: Received message: {"Version":7,"MessageType":"TestExecution.Completed","Payload":{"TestRunCompleteArgs":{"TestRunStatistics":{"ExecutedTests":1,"Stats":{"Failed":1}},"IsCanceled":false,"IsAborted":false,"Error":null,"AttachmentSets":[],"InvokedDataCollectors":[],"ElapsedTimeInRunningTests":"00:00:02.4530676","Metrics":{},"DiscoveredExtensions":{"TestDiscoverers":["Xunit.Runner.VisualStudio.VsTestRunner, xunit.runner.visualstudio.testadapter, Version=3.1.4.0, Culture=neutral, PublicKeyToken=null"],"TestExecutors":["executor://xunit/VsTestRunner3/netcore/"],"TestExecutors2":[],"TestSettingsProviders":[]}},"LastRunTests":{"NewTestResults":[{"TestCase":{"Id":"a8c49312-90f7-774d-ef37-0a55d289cbae","FullyQualifiedName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","DisplayName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","ExecutorUri":"executor://xunit/VsTestRunner3/netcore/","Source":"/Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/bin/Debug/net10.0/WorkClub.Tests.Integration.dll","CodeFilePath":null,"LineNumber":0,"Properties":[{"Key":{"Id":"XunitTestCaseExplicit","Label":"xUnit.net Test Case Explicit Flag","Category":"","Description":"","Attributes":0,"ValueType":"System.Boolean"},"Value":false},{"Key":{"Id":"TestCase.ManagedType","Label":"ManagedType","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests"},{"Key":{"Id":"TestCase.ManagedMethod","Label":"ManagedMethod","Category":"","Description":"","Attributes":1,"ValueType":"System.String"},"Value":"CreateClub_WithAdminRole_ReturnsCreated"},{"Key":{"Id":"XunitTestCaseUniqueID","Label":"xUnit.net Test Case Unique ID","Category":"","Description":"","Attributes":0,"ValueType":"System.String"},"Value":"d0865975d8177c51f513124eed31b3647a0ba8c3"}]},"Attachments":[],"Outcome":2,"ErrorMessage":"Microsoft.EntityFrameworkCore.DbUpdateException : An error occurred while saving the entity changes. See the inner exception for details.\n---- Npgsql.PostgresException : 42501: permission denied for table clubs","ErrorStackTrace":" at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Storage.RelationalDatabase.SaveChangesAsync(IList`1 entries, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(StateManager stateManager, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)\n at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken)\n at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext() in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs:line 54\n--- End of stack trace from previous location ---\n at WorkClub.Api.Services.AdminClubService.<>c__DisplayClass3_0.<b__0>d.MoveNext() in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs:line 56\n--- End of stack trace from previous location ---\n at Microsoft.EntityFrameworkCore.ExecutionStrategyExtensions.<>c.<b__3_0>d.MoveNext()\n--- End of stack trace from previous location ---\n at Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.NpgsqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken)\n at WorkClub.Api.Services.AdminClubService.CreateClubAsync(CreateClubRequest request) in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Services/AdminClubService.cs:line 49\n at WorkClub.Api.Endpoints.Clubs.AdminClubEndpoints.CreateClub(CreateClubRequest request, AdminClubService adminClubService) in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Endpoints/Clubs/AdminClubEndpoints.cs:line 39\n at Microsoft.AspNetCore.Http.RequestDelegateFactory.ExecuteTaskResult[T](Task`1 task, HttpContext httpContext)\n at Microsoft.AspNetCore.Http.RequestDelegateFactory.<>c__DisplayClass102_2.<b__2>d.MoveNext()\n--- End of stack trace from previous location ---\n at WorkClub.Api.Middleware.MemberSyncMiddleware.InvokeAsync(HttpContext context, MemberSyncService memberSyncService) in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/MemberSyncMiddleware.cs:line 24\n at WorkClub.Api.Middleware.TenantValidationMiddleware.InvokeAsync(HttpContext context) in /Users/mastermito/Dev/opencode/backend/WorkClub.Api/Middleware/TenantValidationMiddleware.cs:line 30\n at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)\n at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)\n at Microsoft.AspNetCore.TestHost.HttpContextBuilder.<>c__DisplayClass23_0.<g__RunRequestAsync|0>d.MoveNext()\n--- End of stack trace from previous location ---\n at Microsoft.AspNetCore.TestHost.ClientHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)\n at Microsoft.AspNetCore.Mvc.Testing.Handlers.CookieContainerHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)\n at Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)\n at System.Net.Http.HttpClient.g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken)\n at WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated() in /Users/mastermito/Dev/opencode/backend/WorkClub.Tests.Integration/Clubs/AdminClubEndpointsTests.cs:line 24\n--- End of stack trace from previous location ---\n----- Inner Stack Trace -----\n at Npgsql.Internal.NpgsqlConnector.ReadMessageLong(Boolean async, DataRowLoadingMode dataRowLoadingMode, Boolean readingNotifications, Boolean isReadingPrependedMessage)\n at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token)\n at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)\n at Npgsql.NpgsqlDataReader.NextResult(Boolean async, Boolean isConsuming, CancellationToken cancellationToken)\n at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)\n at Npgsql.NpgsqlCommand.ExecuteReader(Boolean async, CommandBehavior behavior, CancellationToken cancellationToken)\n at Npgsql.NpgsqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken)\n at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken)","DisplayName":"WorkClub.Tests.Integration.Clubs.AdminClubEndpointsTests.CreateClub_WithAdminRole_ReturnsCreated","Messages":[],"ComputerName":"MacBook-Pro-von-Denis","Duration":"00:00:02.0990329","StartTime":"2026-03-18T14:19:46.91042+00:00","EndTime":"2026-03-18T14:19:49.015933+00:00","Properties":[]}],"TestRunStatistics":{"ExecutedTests":1,"Stats":{"Failed":1}},"ActiveTests":[]},"RunAttachments":[],"ExecutorUris":["executor://xunit/VsTestRunner3/netcore/"]}} +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.242, 236456682106375, vstest.console.dll, TestRequestSender.EndSession: Sending end session. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.242, 236456682189500, vstest.console.dll, ProxyOperationManager.Close: waiting for test host to exit for 100 ms +TpTrace Verbose: 0 : 54517, 5, 2026/03/18, 15:19:49.252, 236456692536958, vstest.console.dll, TestHostManagerCallbacks.StandardOutputReceivedCallback Test host standard output line: +TpTrace Warning: 0 : 54517, 11, 2026/03/18, 15:19:49.252, 236456692692083, vstest.console.dll, TestHostManagerCallbacks.ErrorReceivedCallback Test host standard error line: +TpTrace Verbose: 0 : 54517, 12, 2026/03/18, 15:19:49.253, 236456693672208, vstest.console.dll, TestHostProvider.ExitCallBack: Host exited starting callback. +TpTrace Information: 0 : 54517, 12, 2026/03/18, 15:19:49.253, 236456693703250, vstest.console.dll, TestHostManagerCallbacks.ExitCallBack: Testhost processId: 54518 exited with exitcode: 0 error: '' +TpTrace Verbose: 0 : 54517, 12, 2026/03/18, 15:19:49.253, 236456693712791, vstest.console.dll, DotnetTestHostManager.OnHostExited: invoking OnHostExited callback +TpTrace Verbose: 0 : 54517, 12, 2026/03/18, 15:19:49.253, 236456693736541, vstest.console.dll, CrossPlatEngine.TestHostManagerHostExited: calling on client process exit callback. +TpTrace Information: 0 : 54517, 12, 2026/03/18, 15:19:49.254, 236456693755250, vstest.console.dll, TestRequestSender.OnClientProcessExit: Test host process exited. Standard error: +TpTrace Information: 0 : 54517, 12, 2026/03/18, 15:19:49.254, 236456693765958, vstest.console.dll, SocketServer.Stop: Stop server endPoint: 127.0.0.1:56513 +TpTrace Information: 0 : 54517, 12, 2026/03/18, 15:19:49.254, 236456693770291, vstest.console.dll, SocketServer.Stop: Cancellation requested. Stopping message loop. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.254, 236456693786291, vstest.console.dll, SocketServer.Stop: Stop server endPoint: 127.0.0.1:56513 +TpTrace Verbose: 0 : 54517, 12, 2026/03/18, 15:19:49.254, 236456693803250, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: HostProviderEvents.OnHostExited: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Client.ProxyOperationManager., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.254, 236456693814041, vstest.console.dll, SocketServer.Stop: Cancellation requested. Stopping message loop. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.254, 236456693848833, vstest.console.dll, Closing the connection +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.261, 236456701112208, vstest.console.dll, ParallelRunEventsHandler.HandleTestRunComplete: Handling a run completion, this can be either one part of parallel run completing, or the whole parallel run completing. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705275958, vstest.console.dll, TestRunRequest:SendTestRunStatsChange: Starting. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705362500, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.RunStatsChanged: Invoking callbacks was skipped because there are no subscribers. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705372250, vstest.console.dll, TestRunRequest:SendTestRunStatsChange: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705527291, vstest.console.dll, ParallelProxyExecutionManager: HandlePartialRunComplete: Total workloads = 1, Total started clients = 1 Total completed clients = 1, Run complete = True, Run canceled: False. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705534666, vstest.console.dll, ParallelProxyExecutionManager: HandlePartialRunComplete: All runs completed stopping all managers. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705542875, vstest.console.dll, ParallelOperationManager.StopAllManagers: Stopping all managers. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705549916, vstest.console.dll, ParallelOperationManager.ClearSlots: Clearing all slots. Slots should accept more work: False +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705564583, vstest.console.dll, ParallelOperationManager.SetOccupiedSlotCount: Setting slot counts AvailableSlotCount = 1, OccupiedSlotCount = 0. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705575083, vstest.console.dll, Occupied slots: + +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.265, 236456705579000, vstest.console.dll, ParallelRunEventsHandler.HandleTestRunComplete: Whole parallel run completed. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.266, 236456706177333, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestResult: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.271, 236456711577666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestResult: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 5 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.276, 236456716369041, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunComplete: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.ConsoleLogger., took 4 ms. +TpTrace Verbose: 0 : 54517, 4, 2026/03/18, 15:19:49.277, 236456717348625, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: InternalTestLoggerEvents.SendTestRunComplete: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Internal.MSBuildLogger., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.277, 236456717481083, vstest.console.dll, TestRunRequest:TestRunComplete: Starting. IsAborted:False IsCanceled:False. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.277, 236456717543375, vstest.console.dll, ParallelOperationManager.DoActionOnAllManagers: Calling an action on all managers. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718111583, vstest.console.dll, TestLoggerManager.HandleTestRunComplete: Ignoring as the object is disposed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718124666, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.TestRunComplete: Invoking callback 1/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.TestRunResultAggregator., took 0 ms. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718162958, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: TestRun.TestRunComplete: Invoking callback 2/2 for Microsoft.VisualStudio.TestPlatform.CommandLine.Processors.RunTestsArgumentExecutor+TestRunRequestEventsRegistrar., took 0 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718192500, vstest.console.dll, TestRunRequest:TestRunComplete: Completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718201666, vstest.console.dll, TestRequestSender.SetOperationComplete: Setting operation complete. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:49.278, 236456718204916, vstest.console.dll, TestRunRequest.Dispose: Starting. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:49.278, 236456718226750, vstest.console.dll, TestRunRequest.Dispose: Completed. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718206666, vstest.console.dll, SocketServer.Stop: Stop server endPoint: 127.0.0.1:56513 +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718237333, vstest.console.dll, SocketServer.Stop: Cancellation requested. Stopping message loop. +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:49.278, 236456718237958, vstest.console.dll, TestRequestManager.RunTests: run tests completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718242166, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: LengthPrefixCommunicationChannel: MessageReceived: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender+<>c__DisplayClass34_0., took 36 ms. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718255458, vstest.console.dll, SocketServer.PrivateStop: Stopping server endPoint: 127.0.0.1:56513 error: +TpTrace Information: 0 : 54517, 1, 2026/03/18, 15:19:49.278, 236456718265250, vstest.console.dll, RunTestsArgumentProcessor:Execute: Test run is completed. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718349250, vstest.console.dll, LengthPrefixCommunicationChannel.Dispose: Dispose reader and writer. +TpTrace Information: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718365666, vstest.console.dll, SocketServer.Stop: Raise disconnected event endPoint: 127.0.0.1:56513 error: +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718386458, vstest.console.dll, TestRequestSender: OnTestRunAbort: Operation is already complete. Skip error message. +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718391916, vstest.console.dll, MulticastDelegateUtilities.SafeInvoke: SocketServer: ClientDisconnected: Invoking callback 1/1 for Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender., took 0 ms. +TpTrace Verbose: 0 : 54517, 1, 2026/03/18, 15:19:49.278, 236456718394458, vstest.console.dll, Executor.Execute: Exiting with exit code of 1 +TpTrace Verbose: 0 : 54517, 10, 2026/03/18, 15:19:49.278, 236456718396000, vstest.console.dll, TcpClientExtensions.MessageLoopAsync: exiting MessageLoopAsync remoteEndPoint: 127.0.0.1:56514 localEndPoint: 127.0.0.1:56513