Package net.jqwik.api.arbitraries
Interface ShortArbitrary
- All Superinterfaces:
Arbitrary<Short>
,NumericalArbitrary<Short,
ShortArbitrary>
@API(status=MAINTAINED,
since="1.0")
public interface ShortArbitrary
extends NumericalArbitrary<Short,ShortArbitrary>
Fluent interface to configure the generation of Short and short values.
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.jqwik.api.Arbitrary
Arbitrary.ArbitraryFacade
-
Method Summary
Modifier and TypeMethodDescriptiondefault ShortArbitrary
between
(short min, short max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated numbers.greaterOrEqual
(short min) Set the allowed lowermin
(included) bounder of generated numbers.lessOrEqual
(short max) Set the allowed uppermax
(included) bounder of generated numbers.shrinkTowards
(short target) Set shrinking target totarget
which must be between the allowed bounds.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.NumericalArbitrary
withDistribution
-
Method Details
-
between
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated numbers. -
greaterOrEqual
Set the allowed lowermin
(included) bounder of generated numbers. -
lessOrEqual
Set the allowed uppermax
(included) bounder of generated numbers. -
shrinkTowards
Set shrinking target totarget
which must be between the allowed bounds.
-