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