@API(status=MAINTAINED, since="1.3.2") public interface IteratorArbitrary<T> extends StreamableArbitrary<T,java.util.Iterator<T>>
Arbitrary.ArbitraryFacade
Modifier and Type | Method and Description |
---|---|
IteratorArbitrary<T> |
ofMaxSize(int maxSize)
Set upper size boundary
maxSize (included). |
IteratorArbitrary<T> |
ofMinSize(int minSize)
Set lower size boundary
minSize (included). |
default IteratorArbitrary<T> |
ofSize(int size)
Fix the size to
size . |
reduce
allValues, array, asGeneric, collect, dontShrink, edgeCases, exhaustive, exhaustive, filter, fixGenSize, flatMap, forEachValue, generator, ignoreException, injectDuplicates, injectNull, isUnique, iterator, list, map, optional, sample, sampleStream, set, stream, tuple1, tuple2, tuple3, tuple4, tuple5, unique
default IteratorArbitrary<T> ofSize(int size)
size
.ofSize
in interface SizableArbitrary<java.util.Iterator<T>>
ofSize
in interface StreamableArbitrary<T,java.util.Iterator<T>>
size
- The size of the generated iteratorIteratorArbitrary<T> ofMinSize(int minSize)
minSize
(included).ofMinSize
in interface SizableArbitrary<java.util.Iterator<T>>
ofMinSize
in interface StreamableArbitrary<T,java.util.Iterator<T>>
minSize
- The minimum size of the generated iteratorIteratorArbitrary<T> ofMaxSize(int maxSize)
maxSize
(included).ofMaxSize
in interface SizableArbitrary<java.util.Iterator<T>>
ofMaxSize
in interface StreamableArbitrary<T,java.util.Iterator<T>>
maxSize
- The maximum size of the generated iterator