Add a constructor to set only a formatter for CLIReporter.
continuous-integration/drone/tag Build is passing

This commit is contained in:
2023-10-10 21:41:43 +03:00
parent d1399dac02
commit 3d6b7b4d58
@@ -10,6 +10,10 @@ import org.apache.commons.lang3.StringUtils;
public class CLIReporter extends AbstractReporter {
final int terminalWidth = 80;
public CLIReporter(AbstractTestReportFormatter formatter) {
super(null, formatter);
}
public CLIReporter(ArrayList<AbstractMap.SimpleEntry<AbstractTestCommandMetaDataFactory, Boolean>> metadata, AbstractTestReportFormatter formatter) {
super(metadata, formatter);
}