@Test
public void instancesMayBeUnmarshalled() throws MalformedURLException, JAXBException, DeltaCloudClientException {
ByteArrayInputStream inputStream = new ByteArrayInputStream(InstancesResponse.response.getBytes());
List<Instance> instances = new ArrayList<Instance>();
new InstancesUnmarshaller().unmarshall(inputStream, instances);
assertEquals(2, instances.size());
Instance instance = instances.get(0);
assertEquals(InstancesResponse.id1, instance.getId());
assertEquals(InstancesResponse.name1, instance.getName());