public void test_remove_removed() {
Instant now = Instant.now(_holMaster.getClock());
UniqueId uniqueId = UniqueId.of("DbHol", "101", "0");
_holMaster.remove(uniqueId);
HolidayDocument test = _holMaster.get(uniqueId);
assertEquals(uniqueId, test.getUniqueId());
assertEquals(_version1Instant, test.getVersionFromInstant());
assertEquals(now, test.getVersionToInstant());
assertEquals(_version1Instant, test.getCorrectionFromInstant());
assertEquals(null, test.getCorrectionToInstant());
ManageableHoliday holiday = test.getHoliday();
assertNotNull(holiday);
assertEquals(uniqueId, holiday.getUniqueId());
assertEquals("TestHoliday101", test.getName());
assertEquals(HolidayType.CURRENCY, holiday.getType());
assertEquals("GBP", holiday.getCurrency().getCode());
assertEquals(null, holiday.getRegionExternalId());
assertEquals(null, holiday.getExchangeExternalId());
assertEquals(Arrays.asList(LocalDate.of(2010, 1, 1)), holiday.getHolidayDates());