This commit is contained in:
StellaOps Bot
2025-12-26 21:43:56 +02:00
354 changed files with 354 additions and 0 deletions

View File

@@ -354,6 +354,7 @@ public sealed class MessageOrderingTests : IAsyncLifetime, IDisposable
for (int run = 0; run < 3; run++)
{
using var channel = new InMemoryChannel($"determinism-{run}", bufferSize: 100);
using StellaOps.TestKit;
var received = new List<int>();
// Same sequence each run

View File

@@ -147,6 +147,7 @@ public sealed class ServiceRegistrationIntegrationTests
using var scope1 = _fixture.Services.CreateScope();
using var scope2 = _fixture.Services.CreateScope();
using StellaOps.TestKit;
var echo1 = scope1.ServiceProvider.GetService<EchoEndpoint>();
var echo2 = scope2.ServiceProvider.GetService<EchoEndpoint>();