Skip to content

Commit 4042705

Browse files
committed
javadoc.
1 parent 89ccfdd commit 4042705

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/main/java/hudson/tasks/junit/JUnitResultArchiver.java

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,16 @@ public class JUnitResultArchiver extends Recorder implements SimpleBuildStep {
7575
*/
7676
private boolean keepLongStdio;
7777

78+
/**
79+
* Size of stdout/stderr to keep for a succeeded test.
80+
* @since 1.23
81+
*/
7882
private int maxSucceededSize;
7983

84+
/**
85+
* Size of stdout/stderr to keep for a failed test.
86+
* @since 1.23
87+
*/
8088
private int maxFailedSize;
8189

8290
/**
@@ -129,8 +137,8 @@ private TestResult parse(String expandedTestResults, Run<?,?> run, @Nonnull File
129137
throws IOException, InterruptedException
130138
{
131139
return new JUnitParser(new KeepStdioConfig(this.isKeepLongStdio(),
132-
this.getMaxSucceededSize(),
133-
this.getMaxFailedSize()),
140+
this.getMaxSucceededSize(),
141+
this.getMaxFailedSize()),
134142
this.isAllowEmptyResults())
135143
.parseResult(expandedTestResults, run, workspace, launcher, listener);
136144
}

0 commit comments

Comments
 (0)