catala/compiler/tests.ml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
287 B
OCaml
Raw Normal View History

let () =
let open Alcotest in
run "Optimizations"
[
( "Iota-reduction",
[
test_case "#1" `Quick Shared_ast.Optimizations.test_iota_reduction_1;
2024-02-07 20:14:41 +03:00
test_case "#2" `Quick
Shared_ast.Optimizations.test_iota_reduction_2;
] );
]