use of org.sonar.server.rule.index.RuleIndexer in project sonarqube by SonarSource.
the class RegisterRulesTest method before.
@Before
public void before() {
when(system.now()).thenReturn(DATE1.getTime());
ruleIndexer = new RuleIndexer(system, dbClient, esTester.client());
ruleIndex = new RuleIndex(esTester.client());
activeRuleIndexer = new ActiveRuleIndexer(system, dbClient, esTester.client());
}
Aggregations