package speed
-
speed
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type 'a test_function = 'a test_input -> test_result
type 'a t = {
name : string option;
child_groups : 'a child_suite list;
metadata : Metadata.t list;
examples : 'a example list;
has_focused : bool;
}
and 'a child_suite =
| Child : {
child : 'b t;
setup : 'a test_input -> 'b;
} -> 'a child_suite
| Context : {
child : 'a t;
} -> 'a child_suite