Class FailedTestInfo
- java.lang.Object
-
- jetbrains.buildServer.serverSide.stat.FailedTestInfo
-
public class FailedTestInfo extends Object
- Author:
- kir
-
-
Constructor Summary
Constructors Constructor Description FailedTestInfo(long testNameId, int testId, Long firstFailedIn)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Long
getFirstFailedIn()
Return ID of the build where this test failed first time for the recent sequence of builds.int
getTestId()
long
getTestNameId()
int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
FailedTestInfo
public FailedTestInfo(long testNameId, int testId, @Nullable Long firstFailedIn)
-
-
Method Detail
-
getFirstFailedIn
@Nullable public Long getFirstFailedIn()
Return ID of the build where this test failed first time for the recent sequence of builds. Null if the value was not calculated. -1 if not first test failure but the exact value is unknown.- Returns:
- see above
-
getTestNameId
public long getTestNameId()
-
getTestId
public int getTestId()
- Returns:
- testId of the first test failure of given test in the build
-
-