// Copyright 2020-2025 The NATS Authors // Licensed under the Apache License, Version 2.0 namespace ZB.MOM.NatsNet.Server.IntegrationTests.Helpers; /// /// Base class for integration tests that require a running .NET NatsServer. /// Tests that depend on multi-server cluster infrastructure skip automatically /// until the full server runtime is available. /// public abstract class IntegrationTestBase { /// /// Returns true when the full server runtime required by cluster / super-cluster /// tests is not yet available. /// protected static bool ServerRuntimeUnavailable => true; }