assertTrue(c.transaction().syncRollbackPhase()); // Non XA - side effect of cache manager creation
assertEquals(EvictionStrategy.NONE, c.eviction().strategy());
assertEquals(-1, c.eviction().maxEntries());
c = cm.getCache("custom-interceptors").getCacheConfiguration();
List<InterceptorConfiguration> interceptors = c.customInterceptors().interceptors();
InterceptorConfiguration interceptor = interceptors.get(0);
assertTrue(interceptor.interceptor() instanceof CustomInterceptor1);
assertEquals(InvocationContextInterceptor.class, interceptor.after());
interceptor = interceptors.get(1);
assertEquals(InvocationContextInterceptor.class, interceptor.before());