
de.codecentric.dwcaller.test.TestStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-weave-caller Show documentation
Show all versions of data-weave-caller Show documentation
Library to call DataWeave from Java and execute DW unit tests.
The 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