From c8657f626e55676441ad7be8d03b1ccfb7f07b92 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Sun, 1 Mar 2026 12:19:36 -0500 Subject: [PATCH] fix(batch57): add missing constructors to SuperCluster and LeafNode test classes --- .../JetStream/JetStreamSuperClusterTests.cs | 2 ++ .../LeafNode/LeafNodeTests.cs | 2 ++ reports/current.md | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/dotnet/tests/ZB.MOM.NatsNet.Server.IntegrationTests/JetStream/JetStreamSuperClusterTests.cs b/dotnet/tests/ZB.MOM.NatsNet.Server.IntegrationTests/JetStream/JetStreamSuperClusterTests.cs index 00c8ac7..a620a3d 100644 --- a/dotnet/tests/ZB.MOM.NatsNet.Server.IntegrationTests/JetStream/JetStreamSuperClusterTests.cs +++ b/dotnet/tests/ZB.MOM.NatsNet.Server.IntegrationTests/JetStream/JetStreamSuperClusterTests.cs @@ -31,6 +31,8 @@ namespace ZB.MOM.NatsNet.Server.IntegrationTests.JetStream; [Trait("Category", "Integration")] public sealed class JetStreamSuperClusterTests : IntegrationTestBase { + public JetStreamSuperClusterTests(ITestOutputHelper output) : base(output) { } + // ------------------------------------------------------------------------- // From server/jetstream_super_cluster_test.go // ------------------------------------------------------------------------- diff --git a/dotnet/tests/ZB.MOM.NatsNet.Server.IntegrationTests/LeafNode/LeafNodeTests.cs b/dotnet/tests/ZB.MOM.NatsNet.Server.IntegrationTests/LeafNode/LeafNodeTests.cs index 5eddb9f..0ea7d88 100644 --- a/dotnet/tests/ZB.MOM.NatsNet.Server.IntegrationTests/LeafNode/LeafNodeTests.cs +++ b/dotnet/tests/ZB.MOM.NatsNet.Server.IntegrationTests/LeafNode/LeafNodeTests.cs @@ -29,6 +29,8 @@ namespace ZB.MOM.NatsNet.Server.IntegrationTests.LeafNode; [Trait("Category", "Integration")] public sealed class LeafNodeTests : IntegrationTestBase { + public LeafNodeTests(ITestOutputHelper output) : base(output) { } + /// /// Verifies that when a leaf-node remote URL resolves to multiple IP addresses /// the server randomly cycles through them, ensuring all IPs are eventually used. diff --git a/reports/current.md b/reports/current.md index ec81173..fe5b67a 100644 --- a/reports/current.md +++ b/reports/current.md @@ -1,6 +1,6 @@ # NATS .NET Porting Status Report -Generated: 2026-03-01 17:18:59 UTC +Generated: 2026-03-01 17:19:37 UTC ## Modules (12 total)