@API(status=MAINTAINED, since="1.3.2") public interface StreamArbitrary<T> extends Arbitrary<java.util.stream.Stream<T>>, StreamableArbitrary<T,java.util.stream.Stream<T>>
Arbitrary.ArbitraryFacade
Modifier and Type | Method and Description |
---|---|
StreamArbitrary<T> |
ofMaxSize(int maxSize)
Set upper size boundary
maxSize (included). |
StreamArbitrary<T> |
ofMinSize(int minSize)
Set lower size boundary
minSize (included). |
default StreamArbitrary<T> |
ofSize(int size)
Fix the size to
size . |
StreamArbitrary<T> |
uniqueElements()
Add the constraint that elements of the generated stream must be unique,
i.e. no two elements must return true when being compared using Object.equals(Object).
|
StreamArbitrary<T> |
uniqueElements(java.util.function.Function<T,java.lang.Object> by)
Add the constraint that elements of the generated stream must be unique
relating to an element's "feature" being extracted using the
by function. |
StreamArbitrary<T> |
withSizeDistribution(RandomDistribution uniform)
Set random distribution
distribution of size of generated stream. |
reduce
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
default StreamArbitrary<T> ofSize(int size)
size
.ofSize
in interface SizableArbitrary<java.util.stream.Stream<T>>
ofSize
in interface StreamableArbitrary<T,java.util.stream.Stream<T>>
size
- The size of the generated streamStreamArbitrary<T> ofMinSize(int minSize)
minSize
(included).ofMinSize
in interface SizableArbitrary<java.util.stream.Stream<T>>
ofMinSize
in interface StreamableArbitrary<T,java.util.stream.Stream<T>>
minSize
- The minimum size of the generated streamStreamArbitrary<T> ofMaxSize(int maxSize)
maxSize
(included).ofMaxSize
in interface SizableArbitrary<java.util.stream.Stream<T>>
ofMaxSize
in interface StreamableArbitrary<T,java.util.stream.Stream<T>>
maxSize
- The maximum size of the generated stream@API(status=EXPERIMENTAL, since="1.5.3") StreamArbitrary<T> withSizeDistribution(RandomDistribution uniform)
distribution
of size of generated stream.
The distribution's center is the minimum size of the generated stream.withSizeDistribution
in interface SizableArbitrary<java.util.stream.Stream<T>>
withSizeDistribution
in interface StreamableArbitrary<T,java.util.stream.Stream<T>>
@API(status=MAINTAINED, since="1.4.0") StreamArbitrary<T> uniqueElements()
The constraint can be combined with other uniqueElements(Function) constraints.
uniqueElements
in interface StreamableArbitrary<T,java.util.stream.Stream<T>>
@API(status=MAINTAINED, since="1.4.0") StreamArbitrary<T> uniqueElements(java.util.function.Function<T,java.lang.Object> by)
by
function.
The extracted features are being compared using Object.equals(Object).
The constraint can be combined with other uniqueElements(Function) constraints.
uniqueElements
in interface StreamableArbitrary<T,java.util.stream.Stream<T>>