com.aventstack.extentreports.gherkin.model.Background Maven / Gradle / Ivy
The newest version!
package com.aventstack.extentreports.gherkin.model;
import java.io.Serializable;
public class Background implements IGherkinFormatterModel, Serializable {
private static final long serialVersionUID = -955371501488725151L;
private static final String VALUE = "Background";
public static String getGherkinName() {
return VALUE;
}
@Override
public String toString() {
return getGherkinName();
}
}