@@ -97,6 +97,9 @@ public final class StartupReportConfiguration {
97
97
98
98
private StatisticsReporter statisticsReporter ;
99
99
100
+ /**
101
+ * @since 3.3.1
102
+ */
100
103
@ SuppressWarnings ("checkstyle:parameternumber" )
101
104
public StartupReportConfiguration (
102
105
boolean useFile ,
@@ -140,6 +143,46 @@ public StartupReportConfiguration(
140
143
this .testsetReporter = testsetReporter ;
141
144
}
142
145
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
+
143
186
public boolean isUseFile () {
144
187
return useFile ;
145
188
}
0 commit comments