Mavryk_base_test_helpers.Tztest
tztest
contains the definition of tztest
: a wrapper for tests cases running in the error monad. It also adds helpers for working with the mock sink.
val tztest :
string ->
Mavkit_alcotezt.Alcotest.speed_level ->
(unit -> (unit, Mavryk_base.TzPervasives.tztrace) Stdlib.result Lwt.t) ->
unit Mavkit_alcotezt.Alcotest_lwt.test_case
Transform a function running in the error monad into an Alcotest, taking care of failing the test if the function results is an error. Note that the given function must still take care of test assertions, e.g. by using Alcotest.check
.
val tztest_qcheck :
?count:int ->
name:string ->
'a QCheck.arbitrary ->
('b -> ('c, Mavryk_base.TzPervasives.tztrace) Stdlib.result Lwt.t) ->
unit Mavkit_alcotezt.Alcotest_lwt.test_case
val tztest_qcheck2 :
?print:'a QCheck2.Print.t ->
?count:int ->
name:string ->
'a QCheck2.Gen.t ->
('b -> ('c, Mavryk_base.TzPervasives.tztrace) Stdlib.result Lwt.t) ->
unit Mavkit_alcotezt.Alcotest_lwt.test_case