return methodInvocation.proceed();
}
}).when(loguedInterceptor).invoke(any(MethodInvocation.class));
AopModule aop = new AopModule();
aop.setLoguedInterceptor(loguedInterceptor);
injector = Guice.createInjector(new ValidationModule(), new ServerModule(), new Module(), aop, new JpaPersistModule("appEngine"));
validator = injector.getInstance(Validator.class);
}