1 package com.oransc.rappmanager.models.cache;
3 import org.springframework.boot.test.context.TestConfiguration;
4 import org.springframework.cache.CacheManager;
5 import org.springframework.cache.concurrent.ConcurrentMapCacheManager;
6 import org.springframework.context.annotation.Bean;
9 class BeanTestConfiguration {
12 public CacheManager cacheManager() {
13 return new ConcurrentMapCacheManager();