Class QuickCheckGeneratorAdapter<T>

java.lang.Object
de.cuioss.test.generator.internal.net.QuickCheckGeneratorAdapter<T>
Type Parameters:
T - identifying the type of elements to be generated
All Implemented Interfaces:
TypedGenerator<T>

public class QuickCheckGeneratorAdapter<T> extends Object implements TypedGenerator<T>
Wrapper for Generator provided by QuickCheck
Author:
Oliver Wolff
  • Constructor Details

  • Method Details

    • next

      public T next()
      Description copied from interface: TypedGenerator
      Generates the next instance based on the generator's configuration. Implementations must ensure thread-safety.
      Specified by:
      next in interface TypedGenerator<T>
      Returns:
      A newly created instance. May be null if the generator explicitly supports null value generation.