use of org.sonarlint.intellij.config.project.SonarLintProjectSettings in project sonarlint-intellij by SonarSource.
the class ToolWindowVerboseModeActionTest method prepare.
@Before
public void prepare() {
settings = new SonarLintProjectSettings();
super.register(SonarLintProjectSettings.class, settings);
action = new ToolWindowVerboseModeAction();
event = SonarLintTestUtils.createAnActionEvent(project);
}
use of org.sonarlint.intellij.config.project.SonarLintProjectSettings in project sonarlint-intellij by SonarSource.
the class ProjectLogOutputTest method setUp.
@Before
public void setUp() {
mockConsole = mock(SonarLintConsole.class);
settings = new SonarLintProjectSettings();
settings.setAnalysisLogsEnabled(true);
logOutput = new ProjectLogOutput(mockConsole, settings);
}
use of org.sonarlint.intellij.config.project.SonarLintProjectSettings in project sonarlint-intellij by SonarSource.
the class StandaloneSonarLintFacadeTest method setUp.
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
settings = new SonarLintProjectSettings();
when(project.getBasePath()).thenReturn("");
facade = new StandaloneSonarLintFacade(settings, console, project, engine);
}
Aggregations