Turns off test cases for two-client tests
This commit is contained in:
parent
3aba6d5082
commit
3c9cb9b7da
|
@ -7,23 +7,15 @@ namespace Tests.BasicTests
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
public class TwoClientTests : DistTest
|
public class TwoClientTests : DistTest
|
||||||
{
|
{
|
||||||
[TestCase(1)]
|
[Test]
|
||||||
[TestCase(2)]
|
public void TwoClientsOnePodTest()
|
||||||
[TestCase(3)]
|
|
||||||
[TestCase(4)]
|
|
||||||
[TestCase(5)]
|
|
||||||
[TestCase(6)]
|
|
||||||
[TestCase(7)]
|
|
||||||
[TestCase(8)]
|
|
||||||
[TestCase(9)]
|
|
||||||
public void TwoClientsOnePodTest(int size)
|
|
||||||
{
|
{
|
||||||
var group = SetupCodexNodes(2);
|
var group = SetupCodexNodes(2);
|
||||||
|
|
||||||
var primary = group[0];
|
var primary = group[0];
|
||||||
var secondary = group[1];
|
var secondary = group[1];
|
||||||
|
|
||||||
PerformTwoClientTest(primary, secondary, size.MB());
|
PerformTwoClientTest(primary, secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
|
Loading…
Reference in New Issue