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

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

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

import java.awt.Color;

public enum Status {

	PASSED, SKIPPED, PENDING, UNDEFINED, AMBIGUOUS, FAILED, UNUSED;

	public static Color getStatusColor(Status status) {

		if (status == PASSED)
			return Color.GREEN;
		else if (status == SKIPPED)
			return Color.YELLOW;
		if (status == FAILED)
			return Color.RED;

		return Color.BLACK;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy