DatasetRepo's picture
39a8ae557bafed1b5e5736c10b5897d38635ffc981d13fa842f1ce72e4046229
f9ab7cd verified
raw
history blame
459 Bytes
module Main = struct
open OUnit2
(* Program start *)
(* Program end *)
(* Test cases *)
let test1 _ = assert_equal [1;4;2;0;0;0] (applyOperations [1;2;2;1;1;0])
let test2 _ = assert_equal [1;0] (applyOperations [0;1])
(* Grouping test cases *)
let suite = "Test Suite for applyOperations" >::: [
"test1" >:: test1;
"test2" >:: test2;
]
(* Running the tests *)
let () = run_test_tt_main suite
end