Package net.jqwik.api.stateful
Interface ActionSequenceArbitrary<M>
-
- All Superinterfaces:
Arbitrary<ActionSequence<M>>
@API(status=MAINTAINED, since="1.0") public interface ActionSequenceArbitrary<M> extends Arbitrary<ActionSequence<M>>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.jqwik.api.Arbitrary
Arbitrary.ArbitraryFacade
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default ActionSequenceArbitrary<M>
ofMaxSize(int maxSize)
Deprecated.Use ofSize(int) instead.ActionSequenceArbitrary<M>
ofMinSize(int minSize)
Deprecated.Just remove this call.ActionSequenceArbitrary<M>
ofSize(int size)
Set the intended number of steps of this sequence.-
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, injectDuplicates, injectNull, iterator, list, map, optional, optional, sample, sampleStream, set, stream, tuple1, tuple2, tuple3, tuple4, tuple5, withoutEdgeCases
-
-
-
-
Method Detail
-
ofMinSize
@Deprecated @API(status=DEPRECATED, since="1.5.3") ActionSequenceArbitrary<M> ofMinSize(int minSize)
Deprecated.Just remove this call. Will be removed in 1.7.0This method has no effect. Don't use it.
-
ofMaxSize
@API(status=DEPRECATED, since="1.5.3") default ActionSequenceArbitrary<M> ofMaxSize(int maxSize)
Deprecated.Use ofSize(int) instead. Will be removed in 1.7.0.This method is equivalent to ofSize(int)
-
ofSize
ActionSequenceArbitrary<M> ofSize(int size)
Set the intended number of steps of this sequence.
-
-