forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathounit_tests_main.ml
More file actions
26 lines (25 loc) · 771 Bytes
/
Copy pathounit_tests_main.ml
File metadata and controls
26 lines (25 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
let suites =
OUnit.( >::: ) __FILE__
[
Ounit_vec_test.suites;
Ounit_json_tests.suites;
Ounit_array_tests.suites;
Ounit_scc_tests.suites;
Ounit_list_test.suites;
Ounit_hash_set_tests.suites;
Ounit_bal_tree_tests.suites;
Ounit_hash_stubs_test.suites;
Ounit_map_tests.suites;
Ounit_hashtbl_tests.suites;
Ounit_string_tests.suites;
Ounit_int_vec_tests.suites;
Ounit_ident_mask_tests.suites;
Ounit_utf8_test.suites;
Ounit_unicode_tests.suites;
Ounit_util_tests.suites;
Ounit_js_analyzer_tests.suites;
Ounit_jsx_loc_tests.suites;
Ounit_analysis_config_tests.suites;
Ounit_analysis_references_tests.suites;
]
let _ = OUnit.run_test_tt_main suites