public interface STest
STestRun
Modifier and Type | Method and Description |
---|---|
java.util.List<TestNameResponsibilityEntry> |
getAllResponsibilities()
Returns all responsibilities for the test
|
CurrentMuteInfo |
getCurrentMuteInfo()
Returns current test mute info.
|
TestName |
getName()
Returns associated (low-level) TestName object
|
java.lang.String |
getProjectExternalId()
Returns related project external id
|
java.lang.String |
getProjectId()
Returns related project id
|
TestNameResponsibilityEntry |
getResponsibility()
Deprecated.
since 8.0, consider using
getAllResponsibilities() |
long |
getTestId()
Deprecated.
use
getTestNameId() instead. |
long |
getTestNameId()
Returns identifier of the test name.
|
boolean |
isMuted()
Determines whether this test is currently muted (in project or in build type).
|
@NotNull TestName getName()
long getTestNameId()
@Deprecated long getTestId()
getTestNameId()
instead.@NotNull java.lang.String getProjectId()
@Nullable java.lang.String getProjectExternalId()
@Nullable TestNameResponsibilityEntry getResponsibility()
getAllResponsibilities()
This is a shortcut method to check quickly whether the test has a responsibility.
For a full information of the test responsibility, the client is expected to use
getAllResponsibilities()
.
@NotNull java.util.List<TestNameResponsibilityEntry> getAllResponsibilities()
boolean isMuted()
The returned information is up-do-date on the moment of call only and can change at any moment.
Can be significantly faster than getCurrentMuteInfo() != null
check.
@Nullable CurrentMuteInfo getCurrentMuteInfo()