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

daveayan.gherkinsalad.report.Reporter Maven / Gradle / Ivy

There is a newer version: 2.5
Show newest version
package daveayan.gherkinsalad.report;

import java.io.File;

public interface Reporter {
	public void feature(String feature_name);
	
	public void scenario(String scenario_name);
	
	public void given(String step_name);
	
	public void when(String step_name);
	
	public void then(String step_name);
	
	public void and(String step_name);
	
	public void ask(String ask);
	
	public void info(String info);
	
	public void warn(String warn);
	
	public void task(String task);
	
	public void action(String action);
	
	public void error(String error);
	
	public void screenshot_taken(String filename);
	
	public void screenshot_taken(File screenshot_file, String file_name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy