org.requirementsascode.Condition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of requirementsascodecore Show documentation
Show all versions of requirementsascodecore Show documentation
Enables you to define and run executable use case specifications, in your code.
package org.requirementsascode;
/**
* A condition, as part of a model. A condition is used to evaluate when a model
* runner triggers a system reaction, given that a message of a type defined in
* the model is received.
*
* @author b_muth
*
*/
@FunctionalInterface
public interface Condition {
boolean evaluate();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy