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

tech.grasshopper.extent.data.pojo.Executable Maven / Gradle / Ivy

The newest version!
package tech.grasshopper.extent.data.pojo;

import lombok.Builder.Default;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.SuperBuilder;

@Data
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
public abstract class Executable extends BaseEntity {

	protected Feature feature;
	protected Scenario scenario;

	protected Status status;

	@Default
	protected String errorMessage = "";

	@Default
	protected String location = "";

	private ExecutableType executableType;

	public static enum ExecutableType {
		STEP, HOOK;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy