All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.consol.citrus.report.DefaultTestReporters Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy