use of com.searchcode.app.service.StatsService in project searchcode-server by boyter.
the class IndexDocumentsJobTest method testExecute.
public void testExecute() throws JobExecutionException {
JobExecutionContext jobExecutionContext = mock(JobExecutionContext.class);
IndexService indexService = mock(IndexService.class);
StatsService statsService = mock(StatsService.class);
LoggerWrapper loggerWrapper = mock(LoggerWrapper.class);
// IndexDocumentsJob indexDocumentsJob = new IndexDocumentsJob(indexService, statsService, loggerWrapper);
//
// indexDocumentsJob.execute(jobExecutionContext);
}
Aggregations