Package net.jqwik.api
Interface EdgeCases<T>
- All Superinterfaces:
Iterable<Shrinkable<T>>
@API(status=EXPERIMENTAL,
since="1.3.0")
public interface EdgeCases<T>
extends Iterable<Shrinkable<T>>
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
static class
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> EdgeCases<T>
fromSupplier
(Supplier<Shrinkable<T>> supplier) static <T> EdgeCases<T>
fromSuppliers
(List<Supplier<Shrinkable<T>>> suppliers) default boolean
isEmpty()
default Iterator<Shrinkable<T>>
iterator()
static <T> EdgeCases<T>
none()
default int
size()
List<Supplier<Shrinkable<T>>>
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details