mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 03:04:42 +00:00
18 lines
443 B
C#
18 lines
443 B
C#
using CodexTests.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);
|
|
}
|
|
}
|
|
}
|