Package jetbrains.buildServer.serverSide
Interface CurrentProblemsManagerEx
-
- All Superinterfaces:
CurrentProblemsManager
- All Known Implementing Classes:
CurrentProblemsManagerImpl
public interface CurrentProblemsManagerEx extends CurrentProblemsManager
- Author:
- Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<STestRun>
getProblemsInRunningBuilds(SProject project, Collection<Long> tests, boolean includingMutedProblems, boolean inAllBranches)
Returns the list of test runs in which thetests
is currently failing, from running builds only.-
Methods inherited from interface jetbrains.buildServer.serverSide.CurrentProblemsManager
getFailingTests, getProblemsForProject, getProblemsSummary
-
-
-
-
Method Detail
-
getProblemsInRunningBuilds
@NotNull List<STestRun> getProblemsInRunningBuilds(@NotNull SProject project, @NotNull Collection<Long> tests, boolean includingMutedProblems, boolean inAllBranches)
Returns the list of test runs in which thetests
is currently failing, from running builds only.- Parameters:
project
- the projecttests
- the test namesincludingMutedProblems
- if true, muted tests are considered a problem- Returns:
- the list of test runs
-
-