// Copyright 2020-2025 The NATS Authors // Licensed under the Apache License, Version 2.0 namespace ZB.MOM.NatsNet.Server.IntegrationTests.Helpers; /// /// Helpers for starting individual NATS server instances in integration tests. /// public static class TestServerHelper { /// Runs a server with programmatically supplied options. public static IDisposable RunServer(object opts) => throw new NotImplementedException("Requires full NatsServer runtime."); /// Runs a server from a config file on disk. public static IDisposable RunServerWithConfig(string configFilePath) => throw new NotImplementedException("Requires full NatsServer runtime."); }