{
ActionBeanInterceptorReader reader = new ActionBeanInterceptorReader();
assert true == reader.readAnnotations(InterceptorAction.class);
InterceptorAwareImpl interceptorAwareImpl = new InterceptorAwareImpl();
reader.populateController(interceptorAwareImpl);
List<BeforeInterceptor> beforeInterceptors = interceptorAwareImpl.getBeforeInterceptors();
List<AfterInterceptor> afterInterceptors = interceptorAwareImpl.getAfterInterceptors();
assertEquals(2, beforeInterceptors.size());
assertEquals(2, afterInterceptors.size());
for (BeforeInterceptor interceptor : beforeInterceptors)
{