cookercucumber_reporter.json_pojos.Arguments 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
*
* This Reads Arguments/Parameters Value of a Step
* This Might Exist under a Step
*/
public class Arguments {
@SerializedName(value = "val")
private String val = "";
@SerializedName(value = "offset")
private int offset = 0;
public String getVal() {
return val;
}
public void setVal(String val) {
this.val = val;
}
public int getOffset() {
return offset;
}
public void setOffset(int offset) {
this.offset = offset;
}
}