NotificationLogId id = NotificationLogId.first(NotificationLogFactory.notificationsPerLog());
NotificationLogFactory factory = new NotificationLogFactory(eventStore);
NotificationLog log = factory.createNotificationLog(id);
assertEquals(NotificationLogFactory.notificationsPerLog(), log.totalNotifications());
assertTrue(eventStore.countStoredEvents() >= log.totalNotifications());
assertTrue(log.hasNextNotificationLog());
assertFalse(log.hasPreviousNotificationLog());
assertTrue(log.isArchived());
}