How to mock ElasticsearchOperations (spring-data-elasticsearch v.4.0.3) when unit testing
问题 I am working on a project that uses Spring 2.3.3, spring-data-elastic-4.0.3, ElasticSearch 7.9.0 and mockito-core 3.3.3 I'm trying to mock ElasticsearchOperations when writing unit tests, this is the Service I would like to test (where it's used ElasticsearchOperations): @Service public class SearchByLabelServiceImpl implements SearchByLabelService { private ElasticsearchOperations elasticsearchTemplate; public SearchByLabelServiceImpl(ElasticsearchOperations elasticsearchTemplate) { this