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

tech.grasshopper.pdf.pojo.cucumber.Attribute Maven / Gradle / Ivy

There is a newer version: 2.14.0
Show newest version
package tech.grasshopper.pdf.pojo.cucumber;

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

@Data
@SuperBuilder
@AllArgsConstructor
public abstract class Attribute {

	public Attribute(String name) {
		this.name = name;
	}

	protected String name;

	protected Status status;

	@Default
	private int passedScenarios = 0;
	@Default
	private int failedScenarios = 0;
	@Default
	private int skippedScenarios = 0;
	@Default
	private int totalScenarios = 0;

	@Default
	private int passedFeatures = 0;
	@Default
	private int failedFeatures = 0;
	@Default
	private int skippedFeatures = 0;
	@Default
	private int totalFeatures = 0;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy