mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
12 lines
287 B
OCaml
12 lines
287 B
OCaml
let () =
|
|
let open Alcotest in
|
|
run "Optimizations"
|
|
[
|
|
( "Iota-reduction",
|
|
[
|
|
test_case "#1" `Quick Shared_ast.Optimizations.test_iota_reduction_1;
|
|
test_case "#2" `Quick
|
|
Shared_ast.Optimizations.test_iota_reduction_2;
|
|
] );
|
|
]
|