cookercucumber_reporter.json_pojos.DataTableRows 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;
import java.util.ArrayList;
import java.util.List;
/**
* @author Manjunath Prabhakar (Manjunath-PC)
* @created 19/09/2020
* @project cooker-cucumber-reporter
*
* Used to get the values passed via DataTable
*/
public class DataTableRows {
@SerializedName(value = "cells")
private List cells = new ArrayList();
public List getCells() {
return cells;
}
public void setCells(List cells) {
this.cells = cells;
}
}