using CodexPlugin; using NUnit.Framework; namespace Tests { public class AutoBootstrapDistTest : CodexDistTest { private readonly List onlineCodexNodes = new List(); [SetUp] public void SetUpBootstrapNode() { BootstrapNode = AddCodex(s => s.WithName("BOOTSTRAP")); onlineCodexNodes.Add(BootstrapNode); } protected override void OnCodexSetup(ICodexSetup setup) { if (BootstrapNode != null) setup.WithBootstrapNode(BootstrapNode); } protected ICodexNode? BootstrapNode { get; private set; } } }