use of org.sonar.server.test.index.TestIndex in project sonarqube by SonarSource.
the class CoveredFilesActionTest method setUp.
@Before
public void setUp() {
dbClient = mock(DbClient.class, RETURNS_DEEP_STUBS);
testIndex = mock(TestIndex.class, RETURNS_DEEP_STUBS);
ws = new WsActionTester(new CoveredFilesAction(dbClient, testIndex, userSessionRule));
}
Aggregations