use of org.springframework.cache.support.NoOpCacheManager in project spring-boot by spring-projects.
the class CacheAutoConfigurationTests method noOpCacheExplicit.
@Test
public void noOpCacheExplicit() {
load(DefaultCacheConfiguration.class, "spring.cache.type=none");
NoOpCacheManager cacheManager = validateCacheManager(NoOpCacheManager.class);
assertThat(cacheManager.getCacheNames()).isEmpty();
}
Aggregations