mirror of https://github.com/apache/jclouds.git
Issue 695: Fix @Test annotation test names
This commit is contained in:
parent
98e2702e04
commit
037755ad94
|
@ -34,7 +34,7 @@ import static org.testng.Assert.assertTrue;
|
||||||
/**
|
/**
|
||||||
* @author Jason King
|
* @author Jason King
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "ActionsTest")
|
@Test(groups = "unit", testName = "VirtualMachinesTest")
|
||||||
public class VirtualMachinesTest {
|
public class VirtualMachinesTest {
|
||||||
|
|
||||||
private VirtualMachine virtualMachine;
|
private VirtualMachine virtualMachine;
|
||||||
|
|
|
@ -39,7 +39,7 @@ import com.google.inject.Module;
|
||||||
*
|
*
|
||||||
* @author Adrian Cole
|
* @author Adrian Cole
|
||||||
*/
|
*/
|
||||||
@Test(groups = "live")
|
@Test(groups = "live", testName = "BaseTerremarkEnterpriseCloudClientLiveTest")
|
||||||
public class BaseTerremarkEnterpriseCloudClientLiveTest extends BaseVersionedServiceLiveTest {
|
public class BaseTerremarkEnterpriseCloudClientLiveTest extends BaseVersionedServiceLiveTest {
|
||||||
|
|
||||||
protected RestContext<TerremarkEnterpriseCloudClient, TerremarkEnterpriseCloudAsyncClient> context;
|
protected RestContext<TerremarkEnterpriseCloudClient, TerremarkEnterpriseCloudAsyncClient> context;
|
||||||
|
|
|
@ -39,7 +39,7 @@ import java.util.Date;
|
||||||
*
|
*
|
||||||
* @author Jason King
|
* @author Jason King
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "ResourceAsyncClient")
|
@Test(groups = "unit", testName = "ResourceAsyncClientTest")
|
||||||
public class ResourceAsyncClientTest extends BaseTerremarkEnterpriseCloudAsyncClientTest<ResourceAsyncClient> {
|
public class ResourceAsyncClientTest extends BaseTerremarkEnterpriseCloudAsyncClientTest<ResourceAsyncClient> {
|
||||||
|
|
||||||
private DateService dateService;
|
private DateService dateService;
|
||||||
|
|
|
@ -60,7 +60,7 @@ import static org.testng.Assert.assertNull;
|
||||||
*
|
*
|
||||||
* @author Jason King
|
* @author Jason King
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "ComputePoolResourceSummaryListJAXBParsingTest")
|
@Test(groups = "unit", testName = "ComputePoolCpuUsageDetailJAXBParsingTest")
|
||||||
public class ComputePoolCpuUsageDetailJAXBParsingTest extends BaseRestClientTest {
|
public class ComputePoolCpuUsageDetailJAXBParsingTest extends BaseRestClientTest {
|
||||||
|
|
||||||
private SimpleDateFormatDateService dateService;
|
private SimpleDateFormatDateService dateService;
|
||||||
|
|
|
@ -60,7 +60,7 @@ import static org.testng.Assert.assertNull;
|
||||||
*
|
*
|
||||||
* @author Jason King
|
* @author Jason King
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "ComputePoolResourceSummaryListJAXBParsingTest")
|
@Test(groups = "unit", testName = "ComputePoolMemoryUsageDetailJAXBParsingTest")
|
||||||
public class ComputePoolMemoryUsageDetailJAXBParsingTest extends BaseRestClientTest {
|
public class ComputePoolMemoryUsageDetailJAXBParsingTest extends BaseRestClientTest {
|
||||||
|
|
||||||
private SimpleDateFormatDateService dateService;
|
private SimpleDateFormatDateService dateService;
|
||||||
|
|
|
@ -61,6 +61,7 @@ import static org.testng.AssertJUnit.assertNotNull;
|
||||||
* @author Jason King
|
* @author Jason King
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@Test(groups = "unit", testName = "HardwareConfigurationJAXBParsingTest")
|
||||||
public class HardwareConfigurationJAXBParsingTest extends BaseRestClientTest {
|
public class HardwareConfigurationJAXBParsingTest extends BaseRestClientTest {
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
|
|
|
@ -59,7 +59,7 @@ import static org.testng.Assert.assertTrue;
|
||||||
*
|
*
|
||||||
* @author Adrian Cole
|
* @author Adrian Cole
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "TaskHandlerTest")
|
@Test(groups = "unit", testName = "TaskJAXBParsingTest")
|
||||||
public class TaskJAXBParsingTest extends BaseRestClientTest {
|
public class TaskJAXBParsingTest extends BaseRestClientTest {
|
||||||
private SimpleDateFormatDateService dateService;
|
private SimpleDateFormatDateService dateService;
|
||||||
private Task expected1;
|
private Task expected1;
|
||||||
|
|
Loading…
Reference in New Issue