@Test
public void HardwareProfilesCanBeUnmarshalled() throws MalformedURLException, JAXBException,
DeltaCloudClientException {
List<HardwareProfile> profiles = new ArrayList<HardwareProfile>();
ByteArrayInputStream inputStream = new ByteArrayInputStream(HardwareProfilesResponse.response.getBytes());
new HardwareProfilesUnmarshaller().unmarshall(inputStream, profiles);
assertEquals(2, profiles.size());
}