DateTime monthBegin = new DateTime(DateTimeZone.UTC).withMillisOfDay(0).withDayOfMonth(1);
List<Event> events = ImmutableList.of(
new Event(monthBegin.plusHours(1).plusMinutes(1), "bob"),
new Event(monthBegin.plusHours(1).plusMinutes(2), "bob"),
new Event(monthBegin.plusHours(1).plusMinutes(3), "frank"),
new Event(monthBegin.plusHours(5).plusMinutes(2), "bob"),
new Event(monthBegin.minusHours(1).plusMinutes(10), "bob"),
new Event(monthBegin.minusHours(1).plusMinutes(5), "frank"),
new Event(monthBegin.minusHours(1).plusMinutes(30), "frank"));
CubeWrapper cubeWrapper = new CubeWrapper();