use of org.sonar.scanner.scan.filesystem.BatchIdGenerator in project sonarqube by SonarSource.
the class ModuleIndexerTest method setUp.
@Before
public void setUp() {
reactor = mock(ImmutableProjectReactor.class);
componentStore = new InputComponentStore(new PathResolver());
tree = new DefaultComponentTree();
moduleHierarchy = new DefaultInputModuleHierarchy();
indexer = new ModuleIndexer(reactor, tree, componentStore, new BatchIdGenerator(), moduleHierarchy);
}
Aggregations