Package jetbrains.buildServer.tests
Class TestData
- java.lang.Object
-
- jetbrains.buildServer.tests.TestData
-
public class TestData extends Object
This class contains all necessary information to be sent via XmlRpc to remote client about test and its responsibility
-
-
Constructor Summary
Constructors Constructor Description TestData(TestInfo testInfo, TestResponsibilityData responsibilityData, TestCurrentMuteData currentMuteData, long testNameId, boolean isNewFailed, boolean isFixed)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)TestCurrentMuteDatagetCurrentMuteData()TestResponsibilityDatagetResponsibilityData()TestInfogetTestInfo()longgetTestNameId()inthashCode()booleanisFixed()booleanisMuted(String buildTypeId)booleanisNewFailed()voidupdateCurrentMuteData(TestCurrentMuteData currentMuteData)voidupdateResponsibilityData(TestResponsibilityData responsibilityData)
-
-
-
Constructor Detail
-
TestData
public TestData(@NotNull TestInfo testInfo, @Nullable TestResponsibilityData responsibilityData, @Nullable TestCurrentMuteData currentMuteData, long testNameId, boolean isNewFailed, boolean isFixed)
-
-
Method Detail
-
getTestInfo
@NotNull public TestInfo getTestInfo()
-
getResponsibilityData
@Nullable public TestResponsibilityData getResponsibilityData()
-
getCurrentMuteData
@Nullable public TestCurrentMuteData getCurrentMuteData()
-
getTestNameId
public long getTestNameId()
-
isNewFailed
public boolean isNewFailed()
-
isFixed
public boolean isFixed()
-
isMuted
public boolean isMuted(@Nullable String buildTypeId)
-
updateResponsibilityData
public void updateResponsibilityData(@Nullable TestResponsibilityData responsibilityData)
-
updateCurrentMuteData
public void updateCurrentMuteData(@Nullable TestCurrentMuteData currentMuteData)
-
-