net.masterthought.cucumber.json.support.Argument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-reporting Show documentation
Show all versions of cucumber-reporting Show documentation
Provides pretty html reports for Cucumber. It works by generating html from the cucumber json file.
package net.masterthought.cucumber.json.support;
import net.masterthought.cucumber.json.Row;
/**
* Protractor implementation uses this for the step parameter.
*
* @author Damian Szczepanik (damianszczepanik@github)
*/
public class Argument {
// Start: attributes from JSON file report
private final Row[] rows = new Row[0];
// End: attributes from JSON file report
public Row[] getRows() {
return rows;
}
}