use of com.cloud.resource.ResourceService in project cloudstack by apache.
the class AddClusterCmdTest method testExecuteForEmptyResult.
@Test
public void testExecuteForEmptyResult() {
ResourceService resourceService = Mockito.mock(ResourceService.class);
addClusterCmd._resourceService = resourceService;
try {
addClusterCmd.execute();
} catch (ServerApiException exception) {
Assert.assertEquals("Failed to add cluster", exception.getDescription());
}
}
Aggregations