Package net.jqwik.api
Klasse Assume
java.lang.Object
net.jqwik.api.Assume
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic void
that
(boolean condition) If condition does not hold, the current property method will be aborted, i.e., it will not be executed but not counted as a try.static void
If condition provided by conditionSupplier does not hold, the current property method will be aborted, i.e., it will not be executed but not counted as a try.
-
Methodendetails
-
that
public static void that(boolean condition) If condition does not hold, the current property method will be aborted, i.e., it will not be executed but not counted as a try.Assumptions are typically positioned at the beginning of a property method.
A failing assumption in an example test (annotated with Example or having a single try) will be reported as a skipped test.
- Parameter:
condition
- Condition to make the assumption true
-
that
If condition provided by conditionSupplier does not hold, the current property method will be aborted, i.e., it will not be executed but not counted as a try.Assumptions are typically positioned at the beginning of a property method.
- Parameter:
conditionSupplier
- supplier for condition to make assumption true
-