mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
11 lines
249 B
OCaml
11 lines
249 B
OCaml
|
let _ =
|
||
|
let open Alcotest in
|
||
|
run "Optimizations"
|
||
|
[
|
||
|
( "Lcalc",
|
||
|
[
|
||
|
test_case "#1" `Quick Lcalc.Optimizations.test_lcalc_optims1;
|
||
|
test_case "#2" `Quick Lcalc.Optimizations.test_lcalc_optims2;
|
||
|
] );
|
||
|
]
|