Module Core_kernel.Quickcheck_intf
Quickcheck is a library that uses predicate-based tests and pseudo-random inputs to automate testing.
For examples see lib/core/example/quickcheck.
module type Generator = sig ... endmodule type Deriving_hash = sig ... endmodule type Observer = sig ... endmodule type Shrinker = sig ... endmodule type S = sig ... endmodule type S1 = sig ... endmodule type S2 = sig ... endmodule type S_range = sig ... endmodule type S_int = sig ... endtype seed=[|`Deterministic of Core_kernel__.Import.string|`Nondeterministic]seedspecifies how to initialize a pseudo-random number generator. When multiple tests share a deterministic seed, they each get a separate copy of the random generator's state; random choices in one test do not affect those in another. The nondeterministic seed causes a fresh random state to be generated nondeterministically for each test.
type shrink_attempts=[|`Exhaustive|`Limit of Core_kernel__.Import.int]
module type Quickcheck_config = sig ... endmodule type Quickcheck_configured = sig ... endmodule type Syntax = sig ... endIncludes
Let_syntaxfromMonad.Syntax. SetsOpen_on_rhsto be all ofGenerator, except that it does not shadowLet_syntaxitself. BothGeneratorandOpen_on_rhsare meant to be destructively assigned.
module type Quickcheck = sig ... end