public void cannotDestroyIfNotAuthenticated() throws MalformedURLException, DeltaCloudClientException {
DeltaCloudClientImpl unauthenticatedClient = new DeltaCloudClientImpl(
MockIntegrationTestContext.DELTACLOUD_URL,
"badUser", "badPassword");
Image image = testSetup.getFirstImage(unauthenticatedClient);
unauthenticatedClient.createInstance(image.getId());
}
@Test
public void canCreateInstance() throws DeltaCloudClientException {
Instance instance = null;