GenFractionalPoly provides evidence that instances of Gen[T] and
Fractional[T] exist for some concrete but unknown type T.
GenIntegralPoly provides evidence that instances of Gen[T] and
Integral[T] exist for some concrete but unknown type T.
GenNumericPoly provides evidence that instances of Gen[T] and
Numeric[T] exist for some concrete but unknown type T.
GenOrderingPoly provides evidence that instances of Gen[T] and
Ordering[T] exist for some concrete but unknown type T.
GenPoly provides evidence that an instance of Gen[T] exists for some
concrete but unknown type T.
GenPolyprovides evidence that an instance ofGen[T]exists for some concrete but unknown typeT. Subtypes ofGenPolyprovide additional constraints on the type ofT, such as that an instance ofOrdering[T]orNumeric[T]exists. Users can also extendGenPolyto add their own constraints.This allows construction of polymorphic generators where the the type is known to satisfy certain constraints even though the type itself is unknown.
For instance, consider the following generalized algebraic data type:
We would like to test that for any expression we can fuse two mappings. We want to create instances of
Exprthat reflect the full range of values that anExprcan take, including multiple layers of nested mappings and mappings between different types.Since we do not need any constraints on the generated types we can simply use
GenPoly.GenPolyincludes a convenient generator in its companion object,genPoly, that generates instances of 40 different types including primitive types and various collections.Using it we can define polymorphic generators for expressions:
Finally, we can test our property:
This will generate expressions with multiple levels of nesting and polymorphic mappings between different types, making sure that the types line up for each mapping. This provides a higher level of confidence in properties than testing with a monomorphic value.
Inspired by Erik Osheim's presentation "Galaxy Brain: type-dependence and state-dependence in property-based testing" http://plastic-idolatry.com/erik/oslo2019.pdf.