10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-30 00:44:18 +02:00
QCaml/test/run_tests.ml

14 lines
439 B
OCaml
Raw Normal View History

2020-09-26 12:02:53 +02:00
(*
Run all the OCaml test suites defined in the project.
*)
let test_suites: unit Alcotest.test list = [
"Common.Bitstring", Test_common.Bitstring.tests;
"Common.Util", Test_common.Math_functions.tests;
"Particles.Nuclei", Test_particles.Nuclei.tests;
"Particles.Electrons", Test_particles.Electrons.tests;
"Gaussian_basis.General_basis", Test_gaussian_basis.General_basis.tests;
]
let () = Alcotest.run "QCaml" test_suites