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

cucumber.runtime.formatter.CucumberPrettyFormatter Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package cucumber.runtime.formatter;

import gherkin.formatter.PrettyFormatter;

class CucumberPrettyFormatter extends PrettyFormatter implements ColorAware {
    public CucumberPrettyFormatter(Appendable out) {
        super(out, false, true);
    }

    @Override
    public void setMonochrome(boolean monochrome) {
        super.setMonochrome(monochrome);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy