mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-02-01 03:43:11 +00:00
20 lines
516 B
C#
20 lines
516 B
C#
using DistTestCore;
|
|
using NUnit.Framework;
|
|
|
|
namespace Tests.DownloadConnectivityTests
|
|
{
|
|
[TestFixture]
|
|
public class FullyConnectedDownloadTests : AutoBootstrapDistTest
|
|
{
|
|
[TestCase(3)]
|
|
[TestCase(10)]
|
|
[TestCase(20)]
|
|
public void FullyConnectedDownloadTest(int numberOfNodes)
|
|
{
|
|
for (var i = 0; i < numberOfNodes; i++) SetupCodexNode();
|
|
|
|
PeerDownloadTestHelpers.AssertFullDownloadInterconnectivity(GetAllOnlineCodexNodes());
|
|
}
|
|
}
|
|
}
|