public abstract class ConditionCheck
extends java.lang.Object
implements java.util.function.Supplier<java.lang.Boolean>
ConditionCheck
class provides a base interface for reusable/common conditions that
can be helpful during integration testing.Modifier and Type | Class and Description |
---|---|
static class |
ConditionCheck.CheckResult |
Constructor and Description |
---|
ConditionCheck() |
Modifier and Type | Method and Description |
---|---|
ConditionCheck |
and(ConditionCheck next) |
protected abstract ConditionCheck.CheckResult |
check() |
java.lang.Boolean |
get() |
protected abstract java.lang.String |
getDescription() |
protected abstract java.lang.String getDescription()
protected abstract ConditionCheck.CheckResult check()
public java.lang.Boolean get()
get
in interface java.util.function.Supplier<java.lang.Boolean>
public ConditionCheck and(ConditionCheck next)