|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use StatefulGenerator | |
---|---|
net.java.quickcheck.generator | |
net.java.quickcheck.generator.support |
Uses of StatefulGenerator in net.java.quickcheck.generator |
---|
Methods in net.java.quickcheck.generator that return StatefulGenerator | ||
---|---|---|
static
|
CombinedGenerators.ensureValues(Collection<T> ensuredValues)
Create a deterministic generator which guarantees that all values from the ensuredValues collection will be returned if enough calls to Generator.next() are issued (i.e. ensuredValues.size() <= # of
runs). |
|
static
|
CombinedGenerators.ensureValues(Collection<T> ensuredValues,
Generator<T> otherValues)
Create a deterministic generator which guarantees that all values from the ensuredValues collection will be returned if enough calls to Generator.next() are issued (i.e. ensuredValues.size() <= # of
runs). |
|
static
|
CombinedGenerators.ensureValues(T... content)
Create a deterministic generator which guarantees that all values from the ensuredValues array will be returned if enough calls to Generator.next() are issued (i.e. ensuredValues.size() <= # of
runs). |
|
static
|
CombinedGenerators.uniqueValues(Generator<T> generator)
Create a generator that ensures unique values The actual values are created with an arbitrary generator. |
|
static
|
CombinedGenerators.uniqueValues(Generator<T> generator,
Comparator<? super T> comparator)
Create a generator that ensures unique values. |
|
static
|
CombinedGenerators.uniqueValues(Generator<T> generator,
Comparator<? super T> comparator,
int tries)
Create a generator that ensures unique values. |
|
static
|
CombinedGenerators.uniqueValues(Generator<T> generator,
int tries)
Create a generator that ensures unique values. |
Uses of StatefulGenerator in net.java.quickcheck.generator.support |
---|
Classes in net.java.quickcheck.generator.support that implement StatefulGenerator | |
---|---|
class |
EnsuredValuesGenerator<T>
|
class |
UniqueComparableValuesGenerator<T>
|
class |
UniqueValuesGenerator<T>
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |