@Test
 public void content_LocalTimeParameters()
     throws SAXException, IOException, XpathException, DatatypeConfigurationException,
         FeedException {
   assertXpathExists(
       "/:entry/:content/espi:LocalTimeParameters", newXML(EspiFactory.newLocalTimeParameters()));
 }
  @Test
  @Ignore
  public void show_setsMeterReadingModel() throws JAXBException {
    MeterReading meterReading = Factory.newMeterReading();
    ModelMap model = new ModelMap();
    RetailCustomer retailCustomer = EspiFactory.newRetailCustomer();
    retailCustomer.setId(99L);
    when(service.findById(1L)).thenReturn(meterReading);

    controller.show(1L, 1L, 1L, model);

    assertEquals(meterReading, model.get("meterReading"));
  }