use of org.sonar.scanner.scan.filesystem.StatusDetectionFactory in project sonarqube by SonarSource.
the class StatusDetectionFactoryTest method testCreate.
@Test
public void testCreate() throws Exception {
StatusDetectionFactory factory = new StatusDetectionFactory(mock(ProjectRepositories.class));
StatusDetection detection = factory.create();
assertThat(detection).isNotNull();
}
Aggregations