com.consol.citrus.report.DefaultTestReporters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of citrus-base Show documentation
Show all versions of citrus-base Show documentation
Citrus base and default implementation
package com.consol.citrus.report;
import java.util.Arrays;
import java.util.List;
/**
*
* @author Christoph Deppisch
*/
public class DefaultTestReporters extends TestReporters {
public static final List DEFAULT_REPORTERS = Arrays.asList(
new LoggingReporter(),
new HtmlReporter(),
new JUnitReporter()
);
public DefaultTestReporters() {
DEFAULT_REPORTERS.forEach(this::addTestReporter);
}
}