cookercucumber_reporter.json_pojos.BeforeHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cooker-maven-plugin Show documentation
Show all versions of cooker-maven-plugin Show documentation
Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and
concise reporting
package cookercucumber_reporter.json_pojos;
import com.google.gson.annotations.SerializedName;
/**
* @author Manjunath Prabhakar (Manjunath-PC)
* @created 19/09/2020
* @project cooker-cucumber-reporter
*
* Read all tags within "before" tag
* It Might Exist for Scenario(s), Step(s) Only
*/
public class BeforeHook {
@SerializedName(value = "result")
private Result result;
@SerializedName(value = "match")
private Match match;
public Result getResult() {
return result;
}
public void setResult(Result result) {
this.result = result;
}
public Match getMatch() {
return match;
}
public void setMatch(Match match) {
this.match = match;
}
}