Package jetbrains.buildServer.serverSide
Class TestFailureInfo
- java.lang.Object
-
- jetbrains.buildServer.serverSide.TestFailureInfo
-
@Deprecated public class TestFailureInfo extends Object
Deprecated.in 9.0, useSTestRun.getFullText()insteadRepresents the test run failure information, currently consisting of short and full stacktrace (both nullable).- Since:
- 6.5
- Author:
- Sergey Anchipolevsky, Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetShortStacktrace()Deprecated.in 9.0, useSTestRun.getFullText()insteadStringgetShortStacktraceForWeb()Deprecated.in 9.0, useSTestRun.getFullText()insteadStringgetStacktraceMessage()Deprecated.Returns the test stacktrace message, if available
-
-
-
Method Detail
-
getStacktraceMessage
@Nullable public String getStacktraceMessage()
Deprecated.Returns the test stacktrace message, if available- Returns:
- test stacktrace message, if available
-
getShortStacktrace
@Deprecated @Nullable public String getShortStacktrace()
Deprecated.in 9.0, useSTestRun.getFullText()insteadReturns the short test stacktrace, if available- Returns:
- short test stacktrace, if available
-
getShortStacktraceForWeb
@Deprecated @Nullable public String getShortStacktraceForWeb()
Deprecated.in 9.0, useSTestRun.getFullText()insteadReturns escaped short stacktrace.- Returns:
- short stacktrace with all "dangerous" content to be prepared for output on Web (like replace < with <)
-
-