Serialized Form
-
Package hudson.tasks.junit
-
Class hudson.tasks.junit.CaseResult
class CaseResult extends TestResult implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
className
String className
In JUnit, a test is a method of a class. This field holds the fully qualified class name that the test was in. -
duration
float duration
-
errorDetails
String errorDetails
-
errorStackTrace
String errorStackTrace
-
failedSince
int failedSince
This test has been failing since this build number (not id.) Ifpassing
, this field is left unused to 0. -
keepTestNames
boolean keepTestNames
-
properties
Map<String,
String> properties -
skipped
boolean skipped
-
skippedMessage
String skippedMessage
-
startTime
long startTime
Start time in epoch milliseconds - default is -1 for unset -
stderr
String stderr
Some tools report stdout and stderr at testcase level (such as Maven surefire plugin), others do so at the suite level (such as Ant JUnit task.) If these information are reported at the test case level, these fields are set, otherwise null, in which caseSuiteResult.stdout
. -
stdout
String stdout
Some tools report stdout and stderr at testcase level (such as Maven surefire plugin), others do so at the suite level (such as Ant JUnit task.) If these information are reported at the test case level, these fields are set, otherwise null, in which caseSuiteResult.stdout
. -
testName
String testName
This field retains the method name.
-
-
Class hudson.tasks.junit.ClassResult
class ClassResult extends TabulatedResult implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
cases
Set<CaseResult> cases
-
className
String className
-
duration
float duration
-
failCount
int failCount
-
parent
PackageResult parent
-
passCount
int passCount
-
skipCount
int skipCount
-
startTime
long startTime
-
-
Class hudson.tasks.junit.PackageResult
class PackageResult extends MetaTabulatedResult implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
classes
Map<String,
ClassResult> classes AllClassResult
s keyed by their short name. -
duration
float duration
-
failCount
int failCount
-
packageName
String packageName
-
parent
TestResult parent
-
passCount
int passCount
-
skipCount
int skipCount
-
startTime
long startTime
-
-
Class hudson.tasks.junit.SuiteResult
class SuiteResult extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
cases
List<CaseResult> cases
All test cases. -
duration
float duration
-
enclosingBlockNames
List<String> enclosingBlockNames
-
enclosingBlocks
List<String> enclosingBlocks
-
file
String file
-
id
String id
Optional ID attribute of a test suite. E.g., Eclipse plug-ins tests always have the name 'tests' but a different id. -
name
String name
-
nodeId
String nodeId
OptionalFlowNode.getId()
this suite was generated in. -
properties
Map<String,
String> properties -
startTime
long startTime
-
stderr
String stderr
-
stdout
String stdout
-
time
String time
Optional time attribute of a test suite. E.g., Suites can use their own time attribute or the sum of their cases' times as before. -
timestamp
String timestamp
The 'timestamp' attribute of the test suite. AFAICT, this is not a required attribute in XML, so the value may be null.
-
-
Class hudson.tasks.junit.TestDurationResultSummary
class TestDurationResultSummary extends Object implements Serializable-
Serialized Fields
-
buildNumber
int buildNumber
-
duration
int duration
-
-
-
Class hudson.tasks.junit.TestObject
class TestObject extends AbstractModelObject implements Serializable -
Class hudson.tasks.junit.TestResult
class TestResult extends MetaTabulatedResult implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
duration
float duration
-
impl
TestResultImpl impl
-
keepProperties
boolean keepProperties
-
keepTestNames
boolean keepTestNames
-
skipOldReports
boolean skipOldReports
-
startTime
long startTime
-
stdioRetention
StdioRetention stdioRetention
-
suites
List<SuiteResult> suites
List of allSuiteResult
s in this test. This is the core data structure to be persisted in the disk.
-
-
Class hudson.tasks.junit.TestResultSummary
class TestResultSummary extends Object implements Serializable-
Serialized Fields
-
failCount
int failCount
-
passCount
int passCount
-
skipCount
int skipCount
-
totalCount
int totalCount
-
-
-
Class hudson.tasks.junit.TrendTestResultSummary
class TrendTestResultSummary extends Object implements Serializable-
Serialized Fields
-
buildNumber
int buildNumber
-
testResultSummary
TestResultSummary testResultSummary
-
-
-
-
Package hudson.tasks.junit.pipeline
-
Class hudson.tasks.junit.pipeline.JUnitResultsStepExecution
class JUnitResultsStepExecution extends org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution<TestResultSummary> implements Serializable- serialVersionUID:
- 1L
-
-
Package hudson.tasks.test
-
Class hudson.tasks.test.DefaultTestResultParserImpl
class DefaultTestResultParserImpl extends TestResultParser implements Serializable- serialVersionUID:
- 1L
-
Class hudson.tasks.test.MetaTabulatedResult
class MetaTabulatedResult extends TabulatedResult implements Serializable -
Class hudson.tasks.test.PipelineBlockWithTests
class PipelineBlockWithTests extends Object implements Serializable- serialVersionUID:
- 1L
-
Class hudson.tasks.test.PipelineTestDetails
class PipelineTestDetails extends Object implements Serializable- serialVersionUID:
- 1L
-
Class hudson.tasks.test.SimpleCaseResult
class SimpleCaseResult extends TestResult implements Serializable-
Serialized Fields
-
duration
float duration
-
listOnlyContainingThisObject
List<SimpleCaseResult> listOnlyContainingThisObject
-
parentAction
AbstractTestResultAction parentAction
-
-
-
Class hudson.tasks.test.TabulatedResult
class TabulatedResult extends TestResult implements Serializable -
Class hudson.tasks.test.TestObject
class TestObject extends TestObject implements Serializable- serialVersionUID:
- 1L
-
Class hudson.tasks.test.TestResult
class TestResult extends TestObject implements Serializable
-
-
Package io.jenkins.plugins.junit.storage