Wraps up market tests for now
This commit is contained in:
parent
dfa2322127
commit
797dc096da
|
@ -1,4 +1,6 @@
|
|||
using System;
|
||||
using CodexTests;
|
||||
using NUnit.Framework;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
@ -6,7 +8,13 @@ using System.Threading.Tasks;
|
|||
|
||||
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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using NUnit.Framework;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
@ -6,7 +7,12 @@ using System.Threading.Tasks;
|
|||
|
||||
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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,6 +18,7 @@ namespace CodexReleaseTests.MarketTests
|
|||
private readonly TestToken pricePerSlotPerSecond = 10.TstWei();
|
||||
|
||||
[Test]
|
||||
[Ignore("TODO - Test where multiple successful contracts are run simultaenously")]
|
||||
public void MultipleSuccessfulContracts()
|
||||
{
|
||||
var hosts = StartHosts();
|
||||
|
|
Loading…
Reference in New Issue