use of org.sonarsource.sonarlint.core.analysis.container.analysis.filesystem.SonarLintFileSystem in project sonarlint-core by SonarSource.
the class SensorOptimizerTests method prepare.
@BeforeEach
void prepare() throws Exception {
fs = new SonarLintFileSystem(mock(AnalysisConfiguration.class), inputFileCache);
settings = new MapSettings(Map.of());
optimizer = new SensorOptimizer(fs, mock(ActiveRules.class), settings.asConfig());
}
Aggregations