Issue 830: Cleanup live test classes

This commit is contained in:
Andrew Donald Kennedy 2012-03-20 19:00:26 +00:00
parent ace4282fba
commit b4579518c4
3 changed files with 3 additions and 10 deletions

View File

@ -39,7 +39,7 @@ import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/**
* Tests behavior of {@link NetworkClient}
* Tests behavior of {@link VdcClient}
*
* @author danikov
*/

View File

@ -132,13 +132,6 @@ public class VAppTemplateClientLiveTest extends AbstractVAppClientLiveTest {
});
}
@Test
public void testGetProductSectionsForVAppTemplate() {
ProductSectionList productSectionList = vAppTemplateClient.getProductSectionsForVAppTemplate(vAppTemplateURI);
checkProductSectionList(productSectionList);
}
@Test
public void testGetLeaseSettingsSection() {
// FIXME Wrong case for Vapp

View File

@ -61,11 +61,11 @@ import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
/**
* Tests behavior of {@code VdcClient}
* Tests behavior of {@link VdcClient}
*
* @author danikov
*/
@Test(groups = { "live", "user", "vdc" }, testName = "VdcClientLiveTest")
@Test(groups = { "live", "user", "vdc" }, singleThreaded = true, testName = "VdcClientLiveTest")
public class VdcClientLiveTest extends BaseVCloudDirectorClientLiveTest {
public static final String VDC = "vdc";