use of org.springframework.data.keyvalue.repository.support.KeyValueRepositoryFactory in project spring-data-keyvalue by spring-projects.
the class AbstractRepositoryUnitTests method setup.
@BeforeEach
void setup() {
KeyValueOperations operations = new KeyValueTemplate(new MapKeyValueAdapter());
KeyValueRepositoryFactory keyValueRepositoryFactory = createKeyValueRepositoryFactory(operations);
this.repository = getRepository(keyValueRepositoryFactory);
}
Aggregations