com.github.fmarmar.cucumber.tools.report.model.ScenarioHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-tools Show documentation
Show all versions of cucumber-tools Show documentation
Tooling set for working with cucumber
The newest version!
package com.github.fmarmar.cucumber.tools.report.model;
import java.util.List;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper=true)
public class ScenarioHook extends ExecutionElement {
public ScenarioHook(Result result, String location, List outputs, List embeddings) {
super(result, location, outputs, embeddings);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy