cs-codex-dist-tests/Tests/CodexTests/AutoBootstrapDistTest.cs

25 lines
644 B
C#
Raw Normal View History

2023-09-12 13:43:30 +00:00
using CodexPlugin;
using NUnit.Framework;
namespace Tests
{
2023-09-13 12:24:43 +00:00
public class AutoBootstrapDistTest : CodexDistTest
2023-09-12 13:43:30 +00:00
{
2023-09-19 09:51:59 +00:00
private readonly List<ICodexNode> onlineCodexNodes = new List<ICodexNode>();
2023-09-12 13:43:30 +00:00
2023-09-13 12:24:43 +00:00
[SetUp]
public void SetUpBootstrapNode()
2023-09-12 13:43:30 +00:00
{
2023-09-13 12:24:43 +00:00
BootstrapNode = AddCodex(s => s.WithName("BOOTSTRAP"));
onlineCodexNodes.Add(BootstrapNode);
2023-09-12 13:43:30 +00:00
}
2023-09-13 12:24:43 +00:00
protected override void OnCodexSetup(ICodexSetup setup)
2023-09-12 13:43:30 +00:00
{
2023-09-13 12:24:43 +00:00
if (BootstrapNode != null) setup.WithBootstrapNode(BootstrapNode);
2023-09-12 13:43:30 +00:00
}
2023-09-19 09:51:59 +00:00
protected ICodexNode? BootstrapNode { get; private set; }
2023-09-12 13:43:30 +00:00
}
}