Package jetbrains.buildServer.serverSide
Interface TestRunEx
-
- All Superinterfaces:
STestRun
- All Known Implementing Classes:
BaseTestRun
,DummyTestRunImpl
,LightweightTestRunImpl
,MultiTestRun
,TestRunImpl
,TestRunWithContext
public interface TestRunEx extends STestRun
- Since:
- 6.5
- Author:
- Sergey Anchipolevsky, Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Field Summary
-
Fields inherited from interface jetbrains.buildServer.serverSide.STestRun
NEW_FIRST_NAME_COMPARATOR
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SBuild
getBuildOrNull()
Returns the build and does not throw an exception if it is null.TestRunMetadata
getMetadata()
boolean
isNewFailureComputed()
void
setBuild(SBuild build)
Sets the associated with this test run buildvoid
setMuteInfo(MuteInfo muteInfo)
Sets the mute information for this test run.void
setNewFailure(Boolean newFailure)
-
Methods inherited from interface jetbrains.buildServer.serverSide.STestRun
getBuild, getBuildId, getDuration, getFailedInvocationCount, getFailureInfo, getFirstFailed, getFixedIn, getFullText, getIgnoreComment, getInvocationCount, getMuteInfo, getOrderId, getStatus, getStatusText, getTest, getTestRunId, isFixed, isIgnored, isMuted, isNewFailure, setFirstFailedIn, setFixedIn
-
-
-
-
Method Detail
-
getBuildOrNull
@Nullable SBuild getBuildOrNull()
Returns the build and does not throw an exception if it is null.- Returns:
- the build
-
setBuild
void setBuild(@Nullable SBuild build)
Sets the associated with this test run build- Parameters:
build
- associated build
-
setMuteInfo
void setMuteInfo(@Nullable MuteInfo muteInfo)
Sets the mute information for this test run.- Parameters:
muteInfo
- the mute info
-
setNewFailure
void setNewFailure(@NotNull Boolean newFailure)
-
isNewFailureComputed
boolean isNewFailureComputed()
-
getMetadata
@NotNull TestRunMetadata getMetadata()
-
-