Auto-configured Data Redis Tests
You can use @DataRedisTest to test Redis applications.
By default, it scans for @RedisHash classes and configures Spring Data Redis repositories.
Regular @Component and @ConfigurationProperties beans are not scanned when the @DataRedisTest annotation is used.
@EnableConfigurationProperties can be used to include @ConfigurationProperties beans.
(For more about using Redis with Spring Boot, see "Redis".)
| A list of the auto-configuration settings that are enabled by @DataRedisTestcan be found in the appendix. | 
The following example shows the @DataRedisTest annotation in use:
- 
Java 
- 
Kotlin 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.data.redis.DataRedisTest;
@DataRedisTest
class MyDataRedisTests {
	@Autowired
	private SomeRepository repository;
	// ...
}import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.autoconfigure.data.redis.DataRedisTest
@DataRedisTest
class MyDataRedisTests(@Autowired val repository: SomeRepository) {
	// ...
}