net.masterthought.cucumber.reducers.ReportFeatureMerger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-reporting Show documentation
Show all versions of cucumber-reporting Show documentation
Provides pretty html reports for Cucumber. It works by generating html from the cucumber json file.
package net.masterthought.cucumber.reducers;
import net.masterthought.cucumber.json.Feature;
import java.util.List;
import java.util.function.Predicate;
public interface ReportFeatureMerger extends Predicate> {
/**
* @return list of features which are organized by merger.
*
* @see net.masterthought.cucumber.reducers.ReportFeatureAppendableMerger
* @see net.masterthought.cucumber.reducers.ReportFeatureByIdMerger
* @see net.masterthought.cucumber.reducers.ReportFeatureWithRetestMerger
*
* Merger's type depends on a ReducingMethod which is coming from the configuration.
*/
List merge(List features);
}