Module Ut

module Ut: sig .. end
Unit testing and assertions.

val assert_bool : string -> string -> bool -> unit
Asserts that a boolean expression is true.
val run_test : string -> string -> (string -> unit) -> unit
Runs a test given the parent test name, the sub test name, and the test function.
val report : unit -> unit
Reports the test results and resets the test counters.
val print_msg : string -> unit