net.masterthought.cucumber.json.Match 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;
import net.masterthought.cucumber.json.support.Argument;
public class Match {
// Start: attributes from JSON file report
private final String location = null;
private final Argument[] arguments = new Argument[0];
// End: attributes from JSON file report
public String getLocation() {
return location;
}
public Argument[] getArguments() {
return arguments;
}
}