Uses of Class
hudson.tasks.test.PipelineTestDetails
Package
Description
Model objects that represent JUnit test reports.
Defines contracts that need to be implemented by a test reporting
action (such as the built-in JUnit one).
-
Uses of PipelineTestDetails in hudson.tasks.junit
Modifier and TypeMethodDescriptionvoid
TestResult.parse
(long filesTimestamp, File baseDir, PipelineTestDetails pipelineTestDetails, String[] reportFiles) Collect reports from the given report files, while filtering out all files that were created before the given time.void
TestResult.parse
(long filesTimestamp, Iterable<File> reportFiles, PipelineTestDetails pipelineTestDetails) Collect reports from the given report filesvoid
TestResult.parse
(long filesTimestamp, org.apache.tools.ant.DirectoryScanner results, PipelineTestDetails pipelineTestDetails) Collect reports from the givenDirectoryScanner
, while filtering out all files that were created before the given time.void
TestResult.parse
(File reportFile, PipelineTestDetails pipelineTestDetails) Parses an additional report file.void
TestResult.parse
(Iterable<File> reportFiles, PipelineTestDetails pipelineTestDetails) Deprecated.static TestResultAction
JUnitResultArchiver.parseAndAttach
(JUnitTask task, PipelineTestDetails pipelineTestDetails, Run build, FilePath workspace, Launcher launcher, TaskListener listener) static TestResultSummary
JUnitResultArchiver.parseAndSummarize
(JUnitTask task, PipelineTestDetails pipelineTestDetails, Run<?, ?> build, FilePath workspace, Launcher launcher, TaskListener listener) JUnitParser.parseResult
(String testResultLocations, Run<?, ?> build, PipelineTestDetails pipelineTestDetails, FilePath workspace, Launcher launcher, TaskListener listener) JUnitParser.summarizeResult
(String testResultLocations, Run<?, ?> build, PipelineTestDetails pipelineTestDetails, FilePath workspace, Launcher launcher, TaskListener listener, JunitTestResultStorage storage) ModifierConstructorDescriptionSuiteResult
(String name, String stdout, String stderr, PipelineTestDetails pipelineTestDetails) TestResult
(long filesTimestamp, org.apache.tools.ant.DirectoryScanner results, boolean keepLongStdio, boolean keepProperties, boolean keepTestNames, PipelineTestDetails pipelineTestDetails, boolean skipOldReports) Deprecated.TestResult
(long filesTimestamp, org.apache.tools.ant.DirectoryScanner results, boolean keepLongStdio, boolean keepProperties, PipelineTestDetails pipelineTestDetails, boolean skipOldReports) Deprecated.TestResult
(long filesTimestamp, org.apache.tools.ant.DirectoryScanner results, boolean keepLongStdio, PipelineTestDetails pipelineTestDetails) Deprecated.TestResult
(long filesTimestamp, org.apache.tools.ant.DirectoryScanner results, StdioRetention stdioRetention, boolean keepProperties, boolean keepTestNames, PipelineTestDetails pipelineTestDetails, boolean skipOldReports) Collect reports from the givenDirectoryScanner
, while filtering out all files that were created before the given time. -
Uses of PipelineTestDetails in hudson.tasks.test
Modifier and TypeMethodDescriptionTestResultParser.parseResult
(String testResultLocations, Run<?, ?> run, PipelineTestDetails pipelineTestDetails, FilePath workspace, Launcher launcher, TaskListener listener) Parses the specified set of files and builds aTestResult
object that represents them.
TestResult.parse(long, Iterable, PipelineTestDetails)