mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 19:16:46 +00:00
18 lines
445 B
C#
18 lines
445 B
C#
using DistTestCore.Helpers;
|
|
using Logging;
|
|
|
|
namespace CodexNetDeployer
|
|
{
|
|
public class PeerConnectivityChecker
|
|
{
|
|
public void CheckConnectivity(List<CodexNodeStartResult> startResults)
|
|
{
|
|
var log = new ConsoleLog();
|
|
var checker = new PeerConnectionTestHelpers(log);
|
|
var nodes = startResults.Select(r => r.CodexNode);
|
|
|
|
checker.AssertFullyConnected(nodes);
|
|
}
|
|
}
|
|
}
|