Package net.jqwik.api
Interface Shrinkable<T>
- All Superinterfaces:
Comparable<Shrinkable<T>>
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault Shrinkable<Object>
Sometimes simplifies test writingdefault int
compareTo
(Shrinkable<T> other) distance()
default Shrinkable<T>
default <U> Shrinkable<U>
default Stream<Shrinkable<T>>
grow()
Grow a shrinkable to allow broader searching in flat mapped shrinkablesdefault Optional<Shrinkable<T>>
grow
(Shrinkable<?> before, Shrinkable<?> after) To be able to "move" values towards the end of collections while keeping some constraint constant it's necessary to grow a shrinkable by what another has been shrunk.default Shrinkable<T>
default <U> Shrinkable<U>
shrink()
Create a new and finite stream of smaller or same size shrinkables; size is measured by distance().static <T> Shrinkable<T>
supplyUnshrinkable
(Supplier<T> supplier) static <T> Shrinkable<T>
unshrinkable
(T value) static <T> Shrinkable<T>
unshrinkable
(T value, ShrinkingDistance distance) value()
Create value freshly, so that in case of mutable objects shrinking (and reporting) can rely on untouched values.
-
Method Details
-
unshrinkable
-
unshrinkable
-
supplyUnshrinkable
-
value
T value()Create value freshly, so that in case of mutable objects shrinking (and reporting) can rely on untouched values.- Returns:
- An un-changed instance of the value represented by this shrinkable
-
shrink
Create a new and finite stream of smaller or same size shrinkables; size is measured by distance().Same size shrinkables are allowed but they have to iterate towards a single value to prevent endless shrinking. This also means that a shrinkable must never be in its own shrink stream!
- Returns:
- a finite stream of shrinking options
-
grow
@API(status=INTERNAL, since="1.3.3") default Optional<Shrinkable<T>> grow(Shrinkable<?> before, Shrinkable<?> after) To be able to "move" values towards the end of collections while keeping some constraint constant it's necessary to grow a shrinkable by what another has been shrunk. One example is keeping a sum of values and still shrinking to the same resulting list.- Parameters:
before
- The other shrinkable before shrinkingafter
- The other shrinkable after shrinking- Returns:
- this shrinkable grown by the difference of before and after
-
grow
Grow a shrinkable to allow broader searching in flat mapped shrinkables- Returns:
- a finite stream of grown values
-
distance
ShrinkingDistance distance() -
asGeneric
Sometimes simplifies test writing- Returns:
- generic version of a shrinkable
-
map
-
filter
-
flatMap
-
compareTo
- Specified by:
compareTo
in interfaceComparable<T>
-
makeUnshrinkable
-