package core_bench

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Test.Basic_testSource

Sourcetype packed_f =
  1. | T : ([ `init ] -> unit -> 'a) -> packed_f
Sourcetype t = {
  1. test_id : Id.t;
  2. name : string;
  3. test_name : string;
  4. file_name : string;
  5. module_name : string;
  6. key : int;
  7. arg : string option;
  8. group_key : int option;
  9. f : packed_f;
}
Sourceval test_id : t -> Id.t
Sourceval name : t -> string
Sourceval test_name : t -> string
Sourceval file_name : t -> string
Sourceval module_name : t -> string
Sourceval key : t -> int
Sourceval arg : t -> string option

a name describing this arg

Sourceval group_key : t -> int option
Sourceval f : t -> packed_f
Sourceval create_with_initialization : name:string -> ?test_name:string -> ?file_name:string -> ?module_name:string -> ?group_key:int option -> ?arg:string option -> key:int -> ([ `init ] -> unit -> unit) -> t
Sourceval make_filename : t -> string