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

net.masterthought.cucumber.reducers.ReportFeatureMerger Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy