I have a Spring Boot test that is using Redis and I would like to load only Redis related beans for that test.
I have a function that defines beans:
fun BeanDefinitionDsl.redisBeans() {
    bean {
    // ...
    }
}
And I would like to have only those beans added to the single test class.
Is there a way to do so without adding bean initializer to application properties in the test resource folder?