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

cookercucumber_reporter.json_pojos.Arguments Maven / Gradle / Ivy

Go to download

Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and concise reporting

There is a newer version: 3.1.0
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy