@Test
  public void testGetStoragePropertiesShouldReturnErrorResponse() throws Exception {
    doThrow(new IOException("error")).when(mockFacade).loadStorageProperties();

    Response response = service.getStorageProperties();
    assertEquals(response.getStatus(), Response.Status.INTERNAL_SERVER_ERROR.getStatusCode());
  }