package alcotest
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=e2387136ca854df2b4152139dd4d4b3953a646e804948073dedfe0a232f08a15
sha512=ba38fe4a9061b001d274e5d41fb06c10c84120570fc00dc57dc5a06ba05176c2413295680d839f465ba91469ea99d7e172a324e26f005d6e8c4d98fca7657241
doc/alcotest.engine/Alcotest_engine/V1/Core/Make/index.html
Module Core.Make
Source
Functor for building a tester that sequences tests of type ('a -> unit M.t)
within a given concurrency monad M.t
. The run
and run_with_args
functions must be scheduled in a global event loop. Intended for use by the Alcotest_lwt
and Alcotest_async
backends.
Parameters
module _ : Platform.MAKER
Signature
The return type of each test case run by Alcotest. For the standard Alcotest
module, return = unit
. The concurrent backends Alcotest_lwt
and Alcotest_async
set return = unit Lwt.t
and return = Async_kernel.Deferred.t
respectively.
Speed level of a test. Tests marked as `Quick
are always run. Tests marked as `Slow
are skipped when the `-q` flag is passed.
A test case is a UTF-8 encoded documentation string, a speed level and a function to execute. Typically, the testing function calls the helper functions provided below (such as check
and fail
).
test_case n s f
is the test case n
running at speed s
using the function f
.
A test is a UTF-8 encoded name and a list of test cases. The name can be used for filtering which tests to run on the CLI.
type 'a with_options =
?stdout:Formatters.stdout ->
?stderr:Formatters.stderr ->
?and_exit:bool ->
?verbose:bool ->
?compact:bool ->
?tail_errors:[ `Unlimited | `Limit of int ] ->
?quick_only:bool ->
?show_errors:bool ->
?json:bool ->
?filter:(name:string -> index:int -> [ `Run | `Skip ]) ->
?log_dir:string ->
?bail:bool ->
?record_backtrace:bool ->
?ci:[ `Github_actions | `Unknown | `Disabled ] ->
'a
The various options taken by the tests runners run
and run_with_args
:
stdout
(default toFmt.stdout
). The formatter used to print on the standard output.stderr
(default toFmt.stderr
). The formatter used to print ont the standard error output.and_exit
(defaulttrue
). Once the tests have completed, exit with return code0
if all tests passed, otherwise1
.verbose
(defaultfalse
). Display the test std.out and std.err (rather than redirecting to a log file).compact
(defaultfalse
). Compact the output of the tests.tail_errors
(default unlimited). Show only the last N lines of output of failed tests.quick_only
(defaultfalse
). Don't run tests with the`Slow
speed level.show_errors
(defaultfalse
). Display the test errors.json
(defaultfalse
). Print test results in a JSON-compatible format.filter
. Filter tests according to~name
, the name of the test, and~index
, the number of the test case.log_dir
(default"$PWD/_build/_tests/"
). The directory in which to log the output of the tests (ifverbose
is not set).bail
(defaultfalse
). If true, stop running the tests after the first failure.record_backtrace
(defaulttrue
). Enable backtrace recording before beginning testing.ci
(default auto-detected). Whether to enable specific logging for a CI system.
Variant of run
that consumes a config value.
val run_with_args' :
Alcotest_engine__.Config.User.t ->
string ->
'a ->
'a test list ->
return
Variant of run_with_args
that consumes a config value.