List getStillApplicable()

in src/main/java/jetbrains/buildServer/investigationsAutoAssigner/processing/FailedTestFilter.java [70:81]


  List<STestRun> getStillApplicable(@NotNull final FailedBuildInfo failedBuildInfo,
                                    @NotNull final SProject sProject,
                                    @NotNull final List<STestRun> testRuns,
                                    @NotNull final Map<Long, String> notApplicableTestDescription) {
    SBuild sBuild = failedBuildInfo.getBuild();
    if (LOGGER.isDebugEnabled()) {
      LOGGER.debug(String.format("Filtering before assign of failed tests for build id:%s started", sBuild.getBuildId()));
    }
    return testRuns.stream()
                   .filter(testRun -> isApplicable(sProject, sBuild, testRun, notApplicableTestDescription))
                   .collect(Collectors.toList());
  }