Add a constructor to set only a formatter for CLIReporter.
continuous-integration/drone/tag Build is passing
continuous-integration/drone/tag Build is passing
This commit is contained in:
@@ -10,6 +10,10 @@ import org.apache.commons.lang3.StringUtils;
|
|||||||
public class CLIReporter extends AbstractReporter {
|
public class CLIReporter extends AbstractReporter {
|
||||||
final int terminalWidth = 80;
|
final int terminalWidth = 80;
|
||||||
|
|
||||||
|
public CLIReporter(AbstractTestReportFormatter formatter) {
|
||||||
|
super(null, formatter);
|
||||||
|
}
|
||||||
|
|
||||||
public CLIReporter(ArrayList<AbstractMap.SimpleEntry<AbstractTestCommandMetaDataFactory, Boolean>> metadata, AbstractTestReportFormatter formatter) {
|
public CLIReporter(ArrayList<AbstractMap.SimpleEntry<AbstractTestCommandMetaDataFactory, Boolean>> metadata, AbstractTestReportFormatter formatter) {
|
||||||
super(metadata, formatter);
|
super(metadata, formatter);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user