mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
29 lines
557 B
OCaml
29 lines
557 B
OCaml
open OUnit
|
|
|
|
let suite =
|
|
"all_tests" >:::
|
|
[ Test_pHashtbl.suite;
|
|
Test_PersistentHashtbl.suite;
|
|
Test_bv.suite;
|
|
Test_CCHeap.suite;
|
|
Test_puf.suite;
|
|
Test_vector.suite;
|
|
Test_deque.suite;
|
|
Test_fQueue.suite;
|
|
Test_univ.suite;
|
|
Test_mixtbl.suite;
|
|
Test_RoseTree.suite;
|
|
]
|
|
|
|
let props =
|
|
QCheck.flatten
|
|
[ Test_PersistentHashtbl.props
|
|
; Test_bv.props
|
|
; Test_vector.props
|
|
; Test_levenshtein.props
|
|
]
|
|
|
|
let _ =
|
|
ignore (QCheck.run_tests props);
|
|
ignore (run_test_tt_main suite);
|
|
()
|