Ppx_inline_test_lib.Runtime
module Test_result : sig ... end
type config = (module Inline_test_config.S)
type 'a test_function_args = config:config -> descr:string -> tags:string list -> filename:string -> line_number:int ->
start_pos:int -> end_pos:int -> 'a
val test : ((unit -> bool) -> unit) test_function_args
val test_unit : ((unit -> unit) -> unit) test_function_args
val test_module : ((unit -> unit) -> unit) test_function_args
`Am_test_runner
means the ./inline_tests_runner
process, whereas `Am_child_of_test_runner
means a process descended from the test runner.
am_running_inline_test
is true
if the code is running inline tests (e.g. let%expect_test
, let%test
, let%test_unit
) or is in an executable invoked from inline tests.
val add_evaluator : f:(unit -> Test_result.t) -> unit
Record an evaluator for an external set of tests