package testsimple

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type status =
  1. | Ok
  2. | NotOk
type directive =
  1. | Todo of string
type diagnostic =
  1. | Diag of string list
type node =
  1. | TestCaseNode of status * int * string * diagnostic option
  2. | TodoTestCaseNode of status * int * string * directive * diagnostic option
  3. | DiagnosticNode of diagnostic
  4. | PlanNode of int
type t =
  1. | Document of node list
val count_test_nodes : node list -> int -> int
val count_tests : t -> int
val count_test_failures : t -> int
val init_document : t -> t
val string_of_status : status -> string
val string_of_diagnostic : diagnostic -> string
val string_of_directive : directive -> string
val string_of_node : node -> string
val string_of_document : t -> string