@Test
 public void testItRemovesCalendarEventsForADate() {
   underTest.removeEventsFor(1433701251000L);
   verify(eventsContainer).removeEventByEpochMillis(1433701251000L);
   verifyNoMoreInteractions(eventsContainer);
 }