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

com.aventstack.extentreports.reporter.ExtentBDDReporter Maven / Gradle / Ivy

package com.aventstack.extentreports.reporter;

import java.io.File;

import com.aventstack.extentreports.ReportAggregates;

/**
 * The ExtentHtmlReporter creates a rich standalone HTML file. It allows several configuration options
 * via the config() method.
 */
public class ExtentBDDReporter 
	extends BasicFileReporter {

    private static final String REPORTER_NAME = "bdd";

    public ExtentBDDReporter(String path) {
        super(path);
    }
    
    public ExtentBDDReporter(File file) {
    	super(file);
    }
    
    @Override
    public synchronized void flush(ReportAggregates reportAggregates) {
    }
    
	@Override
	public String getReporterName() {
		return REPORTER_NAME;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy