Search in sources :

Example 1 with StandaloneSonarLintEngine

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));
}
Also used : StandaloneSonarLintEngine(org.sonarsource.sonarlint.core.client.api.standalone.StandaloneSonarLintEngine) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)1 StandaloneSonarLintEngine (org.sonarsource.sonarlint.core.client.api.standalone.StandaloneSonarLintEngine)1