Module Abbreviations.Test

module Test: sig .. end
Bare alias for Test module.

type result = Test.result = 
| Passed
| Failed of Assertion.failure
| Uncaught of exn * string
| Report of int * int * int * string list * (string * int) list
| Exit_code of int
type 'a classifier = 'a Test.classifier 
type t = Test.t 
type output_mode = Test.output_mode = 
| Text_output of Pervasives.out_channel
| Html_output of Pervasives.out_channel
| Xml_output of Pervasives.out_channel
| Xml_junit_output of Pervasives.out_channel
| Csv_output of Pervasives.out_channel * string
include Test