Package jetbrains.buildServer.serverSide
Class BuildTestsInfo
- java.lang.Object
-
- jetbrains.buildServer.serverSide.BuildTestsInfo
-
public class BuildTestsInfo extends Object
- Author:
- Kir
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceBuildTestsInfo.TestProcessor
-
Constructor Summary
Constructors Constructor Description BuildTestsInfo(SBuild buildData, Long2StatusCollection testsInfo, boolean cachedInMemory)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddTest(long testName, byte testStatus)voidforEach(BuildTestsInfo.TestProcessor processor)SBuildgetBuildData()Long2StatusCollectiongetTests()StatusgetTestStatus(long testNameId)static booleanisCachable(SBuild build)booleanisCachedInMemory()booleanisEmpty()voidmarkAsUncached()StringtoString()
-
-
-
Constructor Detail
-
BuildTestsInfo
public BuildTestsInfo(@NotNull SBuild buildData, @Nullable Long2StatusCollection testsInfo, boolean cachedInMemory)
-
-
Method Detail
-
getBuildData
@NotNull public SBuild getBuildData()
-
getTestStatus
@Nullable public Status getTestStatus(long testNameId)
-
forEach
public void forEach(BuildTestsInfo.TestProcessor processor)
-
isEmpty
public boolean isEmpty()
-
isCachable
public static boolean isCachable(SBuild build)
-
isCachedInMemory
public boolean isCachedInMemory()
-
markAsUncached
public void markAsUncached()
-
addTest
public void addTest(long testName, byte testStatus)
-
getTests
public Long2StatusCollection getTests()
-
-