use of org.apache.lucene.analysis.de.GermanAnalyzer in project crate by crate.
the class MatchQueryBuilderTest method mockMapperService.
private MapperService mockMapperService() {
Analyzer analyzer = new GermanAnalyzer();
MapperService mapperService = mock(MapperService.class);
when(mapperService.searchAnalyzer()).thenReturn(analyzer);
return mapperService;
}
Aggregations