module TestBuilder:A module for building test functionssig..end
If you want to build customized testing functions which can easily comingle with TestSimple's testing functions you need to use this module to build those functions with.
The best documentation for this is probably the source
code for TestSimple itself.
val create_test_plan : ?count:int -> unit -> unitval build_test_case : ?todo:string -> ?diag:TAPDocument.diagnostic -> bool -> string -> unitval build_diagnostic : string -> unitval build_extended_diagnostic_message : bool -> 'a -> 'a -> string -> TAPDocument.diagnostic option
This function uses ExtLib.dump to display
the got and expected values.
val build_diagnostic_message : bool -> string -> TAPDocument.diagnostic optionmodule Tester:sig..end