Package net.jqwik.api.arbitraries
Interface IteratorArbitrary<T>
- All Superinterfaces:
Arbitrary<Iterator<T>>
,SizableArbitrary<Iterator<T>>
,StreamableArbitrary<T,
Iterator<T>>
@API(status=MAINTAINED,
since="1.3.2")
public interface IteratorArbitrary<T>
extends Arbitrary<Iterator<T>>, StreamableArbitrary<T,Iterator<T>>
Fluent interface to add functionality to arbitraries that generate instances
of type Iterator
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.jqwik.api.Arbitrary
Arbitrary.ArbitraryFacade
-
Method Summary
Modifier and TypeMethodDescriptionofMaxSize
(int maxSize) Set upper size boundarymaxSize
(included).ofMinSize
(int minSize) Set lower size boundaryminSize
(included).default IteratorArbitrary<T>
ofSize
(int size) Fix the size tosize
.Add the constraint that elements of the generated iterator must be unique, i.e. no two elements must return true when being compared using Object.equals(Object).uniqueElements
(Function<T, Object> by) Add the constraint that elements of the generated iterator must be unique relating to an element's "feature" being extracted using theby
function.withSizeDistribution
(RandomDistribution uniform) Set random distributiondistribution
of size of generated iterator.Methods inherited from interface net.jqwik.api.Arbitrary
allValues, array, asGeneric, collect, dontShrink, edgeCases, edgeCases, edgeCases, exhaustive, exhaustive, filter, filter, fixGenSize, flatMap, forEachValue, generator, generator, generatorWithEmbeddedEdgeCases, ignoreException, ignoreException, ignoreExceptions, ignoreExceptions, injectDuplicates, injectNull, isGeneratorMemoizable, iterator, list, map, optional, optional, sample, sampleStream, set, stream, tuple1, tuple2, tuple3, tuple4, tuple5, withoutEdgeCases
Methods inherited from interface net.jqwik.api.arbitraries.StreamableArbitrary
reduce
-
Method Details
-
ofSize
Fix the size tosize
.- Specified by:
ofSize
in interfaceSizableArbitrary<T>
- Specified by:
ofSize
in interfaceStreamableArbitrary<T,
Iterator<T>> - Parameters:
size
- The size of the generated iterator- Returns:
- new arbitrary instance
-
ofMinSize
Set lower size boundaryminSize
(included).- Specified by:
ofMinSize
in interfaceSizableArbitrary<T>
- Specified by:
ofMinSize
in interfaceStreamableArbitrary<T,
Iterator<T>> - Parameters:
minSize
- The minimum size of the generated iterator- Returns:
- new arbitrary instance
-
ofMaxSize
Set upper size boundarymaxSize
(included).- Specified by:
ofMaxSize
in interfaceSizableArbitrary<T>
- Specified by:
ofMaxSize
in interfaceStreamableArbitrary<T,
Iterator<T>> - Parameters:
maxSize
- The maximum size of the generated iterator- Returns:
- new arbitrary instance
-
withSizeDistribution
@API(status=EXPERIMENTAL, since="1.5.3") IteratorArbitrary<T> withSizeDistribution(RandomDistribution uniform) Set random distributiondistribution
of size of generated iterator. The distribution's center is the minimum size of the generated iterator.- Specified by:
withSizeDistribution
in interfaceSizableArbitrary<T>
- Specified by:
withSizeDistribution
in interfaceStreamableArbitrary<T,
Iterator<T>>
-
uniqueElements
Add the constraint that elements of the generated iterator must be unique, i.e. no two elements must return true when being compared using Object.equals(Object).The constraint can be combined with other uniqueElements(Function) constraints.
- Specified by:
uniqueElements
in interfaceStreamableArbitrary<T,
Iterator<T>> - Returns:
- new arbitrary instance
-
uniqueElements
Add the constraint that elements of the generated iterator must be unique relating to an element's "feature" being extracted using theby
function. The extracted features are being compared using Object.equals(Object).The constraint can be combined with other uniqueElements(Function) constraints.
- Specified by:
uniqueElements
in interfaceStreamableArbitrary<T,
Iterator<T>> - Returns:
- new arbitrary instance
-