Class RealtimeJUnitStep
- java.lang.Object
-
- hudson.model.AbstractDescribableImpl<org.jenkinsci.plugins.workflow.steps.Step>
-
- org.jenkinsci.plugins.workflow.steps.Step
-
- org.jenkinsci.plugins.junitrealtimetestreporter.RealtimeJUnitStep
-
- All Implemented Interfaces:
ExtensionPoint
,Describable<org.jenkinsci.plugins.workflow.steps.Step>
public class RealtimeJUnitStep extends org.jenkinsci.plugins.workflow.steps.Step
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RealtimeJUnitStep.DescriptorImpl
static class
RealtimeJUnitStep.Pickler
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description RealtimeJUnitStep(String testResults)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description double
getHealthScaleFactor()
Long
getParseInterval()
String
getStdioRetention()
List<hudson.tasks.junit.TestDataPublisher>
getTestDataPublishers()
String
getTestResults()
boolean
isAllowEmptyResults()
boolean
isKeepLongStdio()
Deprecated.boolean
isSkipMarkingBuildUnstable()
void
setAllowEmptyResults(boolean allowEmptyResults)
void
setHealthScaleFactor(double healthScaleFactor)
void
setKeepLongStdio(boolean keepLongStdio)
Deprecated.void
setParseInterval(Long parseInterval)
void
setSkipMarkingBuildUnstable(boolean skipMarkingBuildUnstable)
void
setStdioRetention(String stdioRetention)
void
setTestDataPublishers(List<hudson.tasks.junit.TestDataPublisher> testDataPublishers)
org.jenkinsci.plugins.workflow.steps.StepExecution
start(org.jenkinsci.plugins.workflow.steps.StepContext context)
-
-
-
Constructor Detail
-
RealtimeJUnitStep
@DataBoundConstructor public RealtimeJUnitStep(String testResults)
-
-
Method Detail
-
getTestResults
public String getTestResults()
-
isKeepLongStdio
@Deprecated public boolean isKeepLongStdio()
Deprecated.
-
setKeepLongStdio
@DataBoundSetter @Deprecated public void setKeepLongStdio(boolean keepLongStdio)
Deprecated.
-
getStdioRetention
public String getStdioRetention()
-
setStdioRetention
@DataBoundSetter public void setStdioRetention(String stdioRetention)
-
getTestDataPublishers
@Nonnull public List<hudson.tasks.junit.TestDataPublisher> getTestDataPublishers()
-
setTestDataPublishers
@DataBoundSetter public void setTestDataPublishers(@Nonnull List<hudson.tasks.junit.TestDataPublisher> testDataPublishers)
-
getHealthScaleFactor
public double getHealthScaleFactor()
-
setHealthScaleFactor
@DataBoundSetter public void setHealthScaleFactor(double healthScaleFactor)
-
isAllowEmptyResults
public boolean isAllowEmptyResults()
-
setAllowEmptyResults
@DataBoundSetter public void setAllowEmptyResults(boolean allowEmptyResults)
-
isSkipMarkingBuildUnstable
public boolean isSkipMarkingBuildUnstable()
-
setSkipMarkingBuildUnstable
@DataBoundSetter public void setSkipMarkingBuildUnstable(boolean skipMarkingBuildUnstable)
-
getParseInterval
public Long getParseInterval()
-
setParseInterval
@DataBoundSetter public void setParseInterval(Long parseInterval)
-
-