mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
15 lines
233 B
OCaml
15 lines
233 B
OCaml
open OUnit
|
|
|
|
(* TODO more tests *)
|
|
|
|
let suite =
|
|
"all_tests" >:::
|
|
[ Test_pHashtbl.suite;
|
|
Test_flatHashtbl.suite;
|
|
Test_heap.suite;
|
|
Test_graph.suite;
|
|
Test_univ.suite;
|
|
]
|
|
|
|
let _ =
|
|
run_test_tt_main suite
|