@@ -97,6 +97,9 @@ public final class StartupReportConfiguration {
9797
9898 private StatisticsReporter statisticsReporter ;
9999
100+ /**
101+ * @since 3.3.1
102+ */
100103 @ SuppressWarnings ("checkstyle:parameternumber" )
101104 public StartupReportConfiguration (
102105 boolean useFile ,
@@ -140,6 +143,46 @@ public StartupReportConfiguration(
140143 this .testsetReporter = testsetReporter ;
141144 }
142145
146+ @ SuppressWarnings ("checkstyle:parameternumber" )
147+ @ Deprecated
148+ public StartupReportConfiguration (
149+ boolean useFile ,
150+ boolean printSummary ,
151+ String reportFormat ,
152+ boolean redirectTestOutputToFile ,
153+ @ Nonnull File reportsDirectory ,
154+ boolean trimStackTrace ,
155+ String reportNameSuffix ,
156+ File statisticsFile ,
157+ boolean requiresRunHistory ,
158+ int rerunFailingTestsCount ,
159+ String xsdSchemaLocation ,
160+ String encoding ,
161+ boolean isForking ,
162+ SurefireStatelessReporter xmlReporter ,
163+ SurefireConsoleOutputReporter consoleOutputReporter ,
164+ SurefireStatelessTestsetInfoReporter testsetReporter ) {
165+ this (
166+ useFile ,
167+ printSummary ,
168+ reportFormat ,
169+ redirectTestOutputToFile ,
170+ reportsDirectory ,
171+ trimStackTrace ,
172+ reportNameSuffix ,
173+ statisticsFile ,
174+ requiresRunHistory ,
175+ rerunFailingTestsCount ,
176+ xsdSchemaLocation ,
177+ encoding ,
178+ isForking ,
179+ true ,
180+ true ,
181+ xmlReporter ,
182+ consoleOutputReporter ,
183+ testsetReporter );
184+ }
185+
143186 public boolean isUseFile () {
144187 return useFile ;
145188 }
0 commit comments