module Main = struct open OUnit2 (* Program start *) (* Program end *) (* Test cases *) let test1 _ = assert_equal 13 (xorAllNums [2;1;3] [10;2;5;0]) let test2 _ = assert_equal 0 (xorAllNums [1;2] [3;4]) (* Grouping test cases *) let suite = "Test Suite for xorAllNums" >::: [ "test1" >:: test1; "test2" >:: test2; ] (* Running the tests *) let () = run_test_tt_main suite end