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

net.masterthought.cucumber.json.support.Argument Maven / Gradle / Ivy

Go to download

Provides pretty html reports for Cucumber. It works by generating html from the cucumber json file.

There is a newer version: 5.8.2
Show newest version
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];
    private final String val = null;
    private final Integer offset = null;
    // End: attributes from JSON file report

    public Row[] getRows() {
        return rows;
    }

    public String getVal() {
        return val;
    }

    public Integer getOffset() {
        return offset;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy