Wraps up market tests for now

This commit is contained in:
Ben 2024-11-26 14:52:24 +01:00
parent dfa2322127
commit 797dc096da
No known key found for this signature in database
GPG Key ID: 0F16E812E736C24B
3 changed files with 19 additions and 4 deletions

View File

@ -1,4 +1,6 @@
using System; using CodexTests;
using NUnit.Framework;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
@ -6,7 +8,13 @@ using System.Threading.Tasks;
namespace CodexReleaseTests.MarketTests namespace CodexReleaseTests.MarketTests
{ {
internal class ContractFailedTest public class ContractFailedTest : CodexDistTest
{ {
[Test]
[Ignore("TODO - Test in which hosts are punished for failing a contract")]
public void ContractFailed()
{
}
} }
} }

View File

@ -1,4 +1,5 @@
using System; using NUnit.Framework;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
@ -6,7 +7,12 @@ using System.Threading.Tasks;
namespace CodexReleaseTests.MarketTests namespace CodexReleaseTests.MarketTests
{ {
internal class ContractRepairedTest public class ContractRepairedTest
{
[Test]
[Ignore("TODO - Test in which a host fails, but the slot is repaired")]
public void ContractRepaired()
{ {
} }
} }
}

View File

@ -18,6 +18,7 @@ namespace CodexReleaseTests.MarketTests
private readonly TestToken pricePerSlotPerSecond = 10.TstWei(); private readonly TestToken pricePerSlotPerSecond = 10.TstWei();
[Test] [Test]
[Ignore("TODO - Test where multiple successful contracts are run simultaenously")]
public void MultipleSuccessfulContracts() public void MultipleSuccessfulContracts()
{ {
var hosts = StartHosts(); var hosts = StartHosts();