package alcotest
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=cba1bd01707c8c55b4764bb0df8c9c732be321e1f1c1a96a406e56d8dbca1d0e
sha512=eebb034c990abd253f526e848a99881686d7bd3c7d1b1d373953d568d062e3d5aaa79b6b4807455aaa9a98710eca4ada30e816a0134717a380619a597575564d
doc/alcotest.engine/Alcotest_engine/V1/Test/index.html
Module V1.Test
Source
Testable values
The following combinators represent types that can be used with the check
functions below.
TESTABLE
provides an abstract description for testable values.
testable pp eq
is a new testable
with the pretty-printer pp
and equality eq
.
slist t comp
tests sorted lists of t
s. The list are sorted using comp
.
result t e
tests t
s on success and e
s on failure.
triple a b c
tests triples of a
s, b
s and c
s.
of_pp pp
tests values which can be printed using pp
and compared using Stdlib.compare
neg t
is t
's negation: it is true
when t
is false
and it is false
when t
is true
.
Assertion functions
Functions for asserting various properties within unit-tests. A failing assertion will cause the testcase to fail immediately.
The assertion functions optionally take information about the location at which they are called in the source code. This is used for giving more descriptive error messages in the case of failure.
check testable msg expected actual
checks that two values are equal.
msg
is printed if the check fails.
If check
isn't in a tail-call position, Alcotest may guess the location of the check. Otherwise, use extra_info
to report the location.
Check that two values are equal (labeled variant of check
).
Simply fail.
Simply fail with a formatted message.
Check that an exception is raised.
Check that an exception is raised.
Skip the current test case.