protected RemoteCache remoteCache;
@Override
protected EmbeddedCacheManager createCacheManager() throws Exception {
ConfigurationBuilder builder = new ConfigurationBuilder();
CustomInterceptorConfig cic = new CustomInterceptorConfig(
new TimeoutInducingInterceptor(), false, false, -1,
EntryWrappingInterceptor.class.getName(), "");
builder.customInterceptors().addInterceptor().interceptor(cic.getInterceptor());
return TestCacheManagerFactory.createCacheManager(builder);
}