use of org.sonar.server.measure.index.ProjectsEsModule in project sonarqube by SonarSource.
the class ProjectsEsModuleTest method verify_count_of_added_components.
@Test
public void verify_count_of_added_components() {
ComponentContainer container = new ComponentContainer();
new ProjectsEsModule().configure(container);
assertThat(container.size()).isEqualTo(3 + 2);
}
Aggregations