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