Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type test_suit = string * test_case list
module Test_Result : sig ... end
Assist in building test sets and individual test items to improve the readability of test code
module type Info_Impl = sig ... end
module type Info_API = sig ... end
module Info_Generator (M : sig ... end) : sig ... end
module Backtrace : sig ... end
module CallStack : sig ... end
module Color : sig ... end
val test :
?backtrace:bool ->
?callstack:bool ->
?color:bool ->
(unit -> unit) ->
Test_Result.t
val test_case :
?backtrace:bool ->
?callstack:bool ->
?color:bool ->
test_case ->
string
val test_suit :
?backtrace:bool ->
?callstack:bool ->
?color:bool ->
test_suit ->
unit
val run :
?backtrace:bool ->
?callstack:bool ->
?color:bool ->
test_suit ->
unit