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

de.codecentric.dwcaller.test.TestStatus Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package de.codecentric.dwcaller.test;

/**
 * Stauts, matches values in Test.dwl in the data-weave-testing-framework.
 */
public enum TestStatus {
	OK(true), SKIP(true), ERROR(false), FAIL(false);
	
	private boolean success;

	private TestStatus(boolean success) {
		this.success = success;
	}
	
	/**
	 * @return Is it {@link OK} or {@link SKIP}?
	 */
	public boolean isSuccess() {
		return success;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy