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

gherkin.formatter.model.Scenario Maven / Gradle / Ivy

There is a newer version: 2.12.2
Show newest version
package gherkin.formatter.model;

import gherkin.formatter.Formatter;

import java.util.List;

public class Scenario extends TagStatement {
    private final String type = "scenario";

    public Scenario(List comments, List tags, String keyword, String name, String description, int line, String id) {
        super(comments, tags, keyword, name, description, line, id);
    }

    @Override
    public void replay(Formatter formatter) {
        formatter.scenario(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy