OUnitLoggertype 'result test_event = | EStart| EEnd| EResult of 'result| ELog of log_severity * string| ELogRaw of stringSee OUnit.mli.
type ('path, 'result) result_full = 'path * 'result * position optiontype ('path, 'result) global_event = | GConf of string * stringDump a configuration options.
*)| GLog of log_severity * string| GStartStart running the tests.
*)| GEndFinish running the tests.
*)| GResults of float * ('path, 'result) result_full list * intEvents which occur at the global level.
type ('path, 'result) log_event_t = | GlobalEvent of ('path, 'result) global_event| TestEvent of 'path * 'result test_eventtype ('path, 'result) log_event = {shard : string;timestamp : float;event : ('path, 'result) log_event_t;}val string_of_event : ('a, 'b) log_event_t -> stringval null_logger : ('a, 'b) loggerval report : ('a, 'b) logger -> ('c, 'd) log_event_t -> unitval close : ('a, 'b) logger -> unitmodule Test : sig ... end