2
0
mirror of synced 2025-01-30 02:06:12 +00:00

24 lines
618 B
C#
Raw Normal View History

using CodexTests;
using DistTestCore;
using NUnit.Framework;
2023-09-08 10:21:40 +02:00
using Utils;
2023-09-20 10:59:52 +02:00
namespace CodexLongTests.DownloadConnectivityTests
{
[TestFixture]
public class LongFullyConnectedDownloadTests : AutoBootstrapDistTest
{
[Test]
[UseLongTimeouts]
[Combinatorial]
public void FullyConnectedDownloadTest(
[Values(10, 15, 20)] int numberOfNodes,
[Values(10, 100)] int sizeMBs)
{
2024-06-12 15:28:08 +02:00
var nodes = StartCodex(numberOfNodes);
2024-06-12 15:28:08 +02:00
CreatePeerDownloadTestHelpers().AssertFullDownloadInterconnectivity(nodes, sizeMBs.MB());
}
}
}