@Test
  public void shouldParseAllLocationsByName() throws HttpException, IOException {
    List<MRSFacility> expected = buildExpectedFacilityList();

    String json = TestUtils.parseJsonFileAsString("json/location-list-response.json");
    when(client.getJson(any(URI.class))).thenReturn(json);

    List<MRSFacility> mrsFacilities = impl.getFacilities("Test");

    assertEquals(expected, mrsFacilities);
  }