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;
|
2020-10-02 15:49:09 +02:00
|
|
|
"Linear_algebra.Vector", Test_linear_algebra.Vector.tests;
|
2020-09-26 12:02:53 +02:00
|
|
|
"Particles.Nuclei", Test_particles.Nuclei.tests;
|
|
|
|
"Particles.Electrons", Test_particles.Electrons.tests;
|
|
|
|
"Gaussian_basis.General_basis", Test_gaussian_basis.General_basis.tests;
|
2020-10-03 00:54:17 +02:00
|
|
|
"Ao_basis.Ao_basis_gaussian", Test_ao_basis.Ao_basis_gaussian.tests;
|
2020-10-07 17:54:15 +02:00
|
|
|
"Ao_basis.Ao_basis", Test_ao_basis.Ao_basis.tests;
|
2020-09-26 12:02:53 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
let () = Alcotest.run "QCaml" test_suites
|