net.masterthought.cucumber.sandwich.SandwichParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-sandwich Show documentation
Show all versions of cucumber-sandwich Show documentation
This project displays a report locally
package net.masterthought.cucumber.sandwich;
import com.beust.jcommander.Parameter;
public class SandwichParameters {
@Parameter(names = "-f", required = true, description = "Folder to monitor for cucumber.json report files")
private String folder;
@Parameter(names = "-o", required = true, description = "Output directory to generate the cucumber-html-reports into")
private String outDir;
@Parameter(names = "-n", required = false, description = "run once without file change listener")
private Boolean withoutListener = false;
public String getFolder() {
return folder;
}
public String getOutDir() {
return outDir;
}
public Boolean getWithoutListener() {
return withoutListener;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy