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

com.github.jlgrock.javascriptframework.closuretesting.resultparsing.TestResultType Maven / Gradle / Ivy

package com.github.jlgrock.javascriptframework.closuretesting.resultparsing;

import java.util.HashMap;
import java.util.Map;

/**
 * Possible results of tests.
 */
public enum TestResultType {
	/**
	 * Possible results of tests.
	 */
	PASSED("PASSED"), FAILED("FAILED"), TIMED_OUT, UNABLE_TO_EXECUTE, BAD_OUTPUT, SCRIPT_ERROR;
	
	/**
	 * The string equivalent.
	 */
	private String name;

	
	/**
	 * A map that allows for searching by name.
	 */
	private static final Map MAP_BY_NAME;

	static {
		MAP_BY_NAME = new HashMap();
		for (TestResultType type : values()) {
			if (type.name != null) {
				MAP_BY_NAME.put(type.name, type);
			}
		}
	}
	
	/**
	 * Constructor.
	 * 
	 * @param nameIn the string to match the enumeration type
	 */
	TestResultType(final String nameIn) {
		this.name = nameIn;
	}
	
	/**
	 * Constructor.  Used for objects that don't take strings.
	 */
	TestResultType() {
	}

	/**
	 * Do a lookup of the enumeration by the name string.
	 * 
	 * @param name
	 *            the name string value
	 * @return the enumerated packaging type
	 */
	public static TestResultType getByName(final String name) {
		return MAP_BY_NAME.get(name);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy