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

com.github.fmarmar.cucumber.tools.report.model.ScenarioHook Maven / Gradle / Ivy

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