Uses of Interface
net.java.quickcheck.StatefulGenerator

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
<T> StatefulGenerator<T>
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
<T> StatefulGenerator<T>
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
<T> StatefulGenerator<T>
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
<T> StatefulGenerator<T>
CombinedGenerators.uniqueValues(Generator<T> generator)
           Create a generator that ensures unique values The actual values are created with an arbitrary generator.
static
<T> StatefulGenerator<T>
CombinedGenerators.uniqueValues(Generator<T> generator, Comparator<? super T> comparator)
           Create a generator that ensures unique values.
static
<T> StatefulGenerator<T>
CombinedGenerators.uniqueValues(Generator<T> generator, Comparator<? super T> comparator, int tries)
           Create a generator that ensures unique values.
static
<T> StatefulGenerator<T>
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>
           
 



Copyright © 2011. All Rights Reserved.