use of org.sonarsource.sonarlint.core.client.api.standalone.StandaloneSonarLintEngine in project sonarlint-intellij by SonarSource.
the class SonarLintEngineFactoryTest method standalone.
@Test
public void standalone() {
StandaloneSonarLintEngine engine = factory.createEngine();
assertThat(engine).isNotNull();
engine.stop();
verify(log, atLeastOnce()).log(anyString(), any(LogOutput.Level.class));
}
Aggregations