2
0
mirror of synced 2025-01-18 20:41:25 +00:00

25 lines
553 B
C#
Raw Normal View History

using NUnit.Framework;
2023-09-12 15:43:30 +02:00
using Utils;
namespace CodexTests.BasicTests
2023-09-12 15:43:30 +02:00
{
[TestFixture]
public class ThreeClientTest : AutoBootstrapDistTest
{
[Test]
public void ThreeClient()
{
2024-05-09 09:32:48 +02:00
var primary = StartCodex();
var secondary = StartCodex();
2023-09-12 15:43:30 +02:00
var testFile = GenerateTestFile(10.MB());
var contentId = primary.UploadFile(testFile);
var downloadedFile = secondary.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile);
}
}
}