public void testARouting() {
   Bill bill = new Bill("A", "1", new BigDecimal("2000.00"), new TypeARouter());
   String location = bill.route();
   assertEquals(location, "A_LOCATION_");
 }