@Test(expected = PriceNotFound.class)
 public void reportsPriceNotFound() throws Exception {
   priceList.findPrice("XXX");
 }
 @Test
 public void findsAPrice() {
   assertEquals(111, priceList.findPrice("A"));
 }