Module Base_quickcheck__.Test
module type S = Base_quickcheck__.Test_intf.S
module Config : sig ... end
val default_config : Config.t
Defaults to a deterministic seed,
shrink_count
andtest_count
of 10_000 each, and sizes ranging from 0 to 30.
val run : f:('a -> Base.unit Base.Or_error.t) -> ?config:Config.t -> ?examples:'a Base.list -> (module S with type t = 'a) -> Base.unit Base.Or_error.t
Tests the property
f
, failing if it raises or returnsError _
. Testsf
first with anyexamples
, then with values from the given generator. Only random values count toward thetest_count
total, not values fromexamples
.
val run_exn : f:('a -> Base.unit) -> ?config:Config.t -> ?examples:'a Base.list -> (module S with type t = 'a) -> Base.unit
Like
run
, but raises on failure.
val result : f:('a -> (Base.unit, 'e) Base.Result.t) -> ?config:Config.t -> ?examples:'a Base.list -> (module S with type t = 'a) -> (Base.unit, 'a * 'e) Base.Result.t
Like
run
, but does not catch exceptions raised byf
. Allows arbitrary error types and returns the input that failed along with the error.
val with_sample : f:('a Base.Sequence.t -> Base.unit Base.Or_error.t) -> ?config:Config.t -> ?examples:'a Base.list -> 'a Base_quickcheck.Generator.t -> Base.unit Base.Or_error.t
Calls
f
with the sequence of values thatrun
would get in the same configuration.
val with_sample_exn : f:('a Base.Sequence.t -> Base.unit) -> ?config:Config.t -> ?examples:'a Base.list -> 'a Base_quickcheck.Generator.t -> Base.unit
Like
with_sample
, but raises on failure.