Disabling Cache in Tests

Disable Caching in your test in your Spring boot application by adding following properties in application.properties file in your test resources folder

spring.cache.type = none

This will disable the cache in your tests.


Comments

Leave a comment