Package jetbrains.buildServer.serverSide
Class TestOutputInfo
- java.lang.Object
-
- jetbrains.buildServer.serverSide.TestOutputInfo
-
public class TestOutputInfo extends Object
- Since:
- 6.5
- Author:
- Sergey Anchipolevsky, Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Constructor Summary
Constructors Constructor Description TestOutputInfo(TestFullTextBuilder fullTextBuilder, String ignoreComment)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TestOutputInfo
createFailed(TestFullTextBuilder fullTextBuilder, String shortText)
static TestOutputInfo
createIgnored(String ignoreComment)
static TestOutputInfo
createSuccessful(TestFullTextBuilder fullTextBuilder)
String
getFullText(int testRunId)
String
getIgnoreComment()
-
-
-
Constructor Detail
-
TestOutputInfo
public TestOutputInfo(@Nullable TestFullTextBuilder fullTextBuilder, @Nullable String ignoreComment)
-
-
Method Detail
-
getFullText
@Nullable public String getFullText(int testRunId)
-
getIgnoreComment
@Nullable public String getIgnoreComment()
-
createIgnored
public static TestOutputInfo createIgnored(@Nullable String ignoreComment)
-
createFailed
public static TestOutputInfo createFailed(@NotNull TestFullTextBuilder fullTextBuilder, @Nullable String shortText)
-
createSuccessful
public static TestOutputInfo createSuccessful(@NotNull TestFullTextBuilder fullTextBuilder)
-
-