Class TestMethodEntity
- java.lang.Object
-
- com.atlassian.bamboo.plugins.testresultparser.testng.TestMethodEntity
-
public class TestMethodEntity extends Object
-
-
Constructor Summary
Constructors Constructor Description TestMethodEntity(@NotNull String methodName, boolean isConfig, @NotNull String status, long durationMs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addParam(@Nullable String value)
void
addReporterOutput(@Nullable String value)
long
getDurationMs()
TestMethodExceptionEntity
getException()
String
getFullName()
String
getMethodName()
com.google.common.collect.ImmutableList<String>
getReporterOutput()
String
getStatus()
boolean
hasException()
boolean
isConfig()
void
setException(TestMethodExceptionEntity exception)
-
-
-
Method Detail
-
addParam
public void addParam(@Nullable @Nullable String value)
-
addReporterOutput
public void addReporterOutput(@Nullable @Nullable String value)
-
setException
public void setException(TestMethodExceptionEntity exception)
-
getFullName
public String getFullName()
-
getMethodName
public String getMethodName()
-
isConfig
public boolean isConfig()
-
getStatus
public String getStatus()
-
getDurationMs
public long getDurationMs()
-
getReporterOutput
public com.google.common.collect.ImmutableList<String> getReporterOutput()
-
hasException
public boolean hasException()
-
getException
public TestMethodExceptionEntity getException()
-
-