Skip to content

Commit b065a81

Browse files
committed
missing doc for other run_test params
1 parent 02ff7ad commit b065a81

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/runner/QCheck_base_runner.mli

+4-1
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,15 @@ val run_tests :
102102
@return an error code, [0] if all tests passed, [1] otherwise.
103103
@param colors if true (default), colorful output
104104
@param verbose if true, prints more information about test cases (default: [false])
105+
@param long if true, runs the long versions of the tests (default: [false])
105106
@param debug_shrink [debug_shrink:(Some ch)] writes a log of successful shrink
106107
attempts to channel [ch], for example [~debug_shrink:(Some (open_out "mylog.txt"))].
107108
Use together with a non-empty list in [~debug_shrink_list].
108109
@param debug_shrink_list the test names to log successful shrink attempts for,
109110
for example [~debug_shrink_list:["list_rev_is_involutive"]].
110-
Requires [~debug_shrink] to be [Some ch]. *)
111+
Requires [~debug_shrink] to be [Some ch].
112+
@param out print output to the provided channel (default: [stdout])
113+
@param rand start the test runner in the provided RNG state *)
111114

112115
val run_tests_main : ?argv:string array -> QCheck2.Test.t list -> 'a
113116
(** Can be used as the main function of a test file. Exits with a non-0 code

0 commit comments

Comments
 (0)