use of alien4cloud.orchestrators.plugin.ILocationResourceAccessor in project alien4cloud by alien4cloud.
the class LocationResourceServiceTest method getResourcesOfTypeForUnconfiguredTypeShouldReturnEmptyList.
@Test
public void getResourcesOfTypeForUnconfiguredTypeShouldReturnEmptyList() {
ILocationResourceAccessor accessor = locationResourceService.accessor(LOCATION_ID);
List<LocationResourceTemplate> resources = accessor.getResources(UNCONFIGURED_TYPE);
Assert.assertEquals(0, resources.size());
}
Aggregations