use of org.sonar.server.component.index.ComponentIndex in project sonarqube by SonarSource.
the class SuggestionsActionTest method setUp.
@Before
public void setUp() {
ComponentIndex index = new ComponentIndex(es.client(), new AuthorizationTypeSupport(userSessionRule));
action = new SuggestionsAction(db.getDbClient(), index);
organization = db.organizations().insert();
}
Aggregations