mirror of https://github.com/apache/jclouds.git
mocks are not multithread capable
This commit is contained in:
parent
f03424cb35
commit
b909137c4a
|
@ -41,7 +41,7 @@ import static org.testng.Assert.assertTrue;
|
||||||
/**
|
/**
|
||||||
* @author Andrei Savu
|
* @author Andrei Savu
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit")
|
@Test(groups = "unit", singleThreaded=true)
|
||||||
public class OSCategoryInTest {
|
public class OSCategoryInTest {
|
||||||
|
|
||||||
private CloudStackClient client;
|
private CloudStackClient client;
|
||||||
|
|
|
@ -35,7 +35,7 @@ import static org.testng.Assert.assertTrue;
|
||||||
/**
|
/**
|
||||||
* @author Andrei Savu
|
* @author Andrei Savu
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "VirtualMachineDestroyedTest")
|
@Test(groups = "unit", singleThreaded=true, testName = "VirtualMachineDestroyedTest")
|
||||||
public class VirtualMachineDestroyedTest {
|
public class VirtualMachineDestroyedTest {
|
||||||
|
|
||||||
CloudStackClient client;
|
CloudStackClient client;
|
||||||
|
|
|
@ -35,7 +35,7 @@ import static org.testng.Assert.assertTrue;
|
||||||
/**
|
/**
|
||||||
* @author Andrei Savu
|
* @author Andrei Savu
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "VirtualMachineExpungedTest")
|
@Test(groups = "unit", singleThreaded=true, testName = "VirtualMachineExpungedTest")
|
||||||
public class VirtualMachineExpungedTest {
|
public class VirtualMachineExpungedTest {
|
||||||
|
|
||||||
CloudStackClient client;
|
CloudStackClient client;
|
||||||
|
|
|
@ -36,7 +36,7 @@ import static org.testng.Assert.assertEquals;
|
||||||
/**
|
/**
|
||||||
* @author Andrei Savu
|
* @author Andrei Savu
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "VirtualMachineRunningTest")
|
@Test(groups = "unit", singleThreaded=true, testName = "VirtualMachineRunningTest")
|
||||||
public class VirtualMachineRunningTest {
|
public class VirtualMachineRunningTest {
|
||||||
|
|
||||||
CloudStackClient client;
|
CloudStackClient client;
|
||||||
|
|
Loading…
Reference in New Issue