File: runtime.mli

package info (click to toggle)
pa-ounit 113.00.00-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 408 kB
  • sloc: ml: 6,370; makefile: 55; lisp: 14
file content (15 lines) | stat: -rw-r--r-- 650 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
type descr = string
type filename = string
type line_number = int
type start_pos = int
type end_pos = int
val set_lib : string -> unit
val unset_lib : string -> unit
val test : descr -> filename -> line_number -> start_pos -> end_pos -> (unit -> bool) -> unit
val test_unit : descr -> filename -> line_number -> start_pos -> end_pos -> (unit -> unit) -> unit
val test_module : descr -> filename -> line_number -> start_pos -> end_pos -> (unit -> unit) -> unit
val summarize : unit -> unit

(* These functions are meant to be called by hand, they should be in an other module. *)
val collect : (unit -> unit) -> (unit -> unit) list
val testing : bool