reader.addAfterInterceptor(null);
assert null == reader.getBeforeInterceptors();
assert null == reader.getAfterInterceptors();
ActionLoggingInterceptor actionLoggingInterceptor = new ActionLoggingInterceptor();
reader.addBeforeInterceptor(actionLoggingInterceptor);
HistoryRecorder recorder = new HistoryRecorder();
reader.addAfterInterceptor(recorder);