Introduce testing witch catch2 (no runtime tests yet)

This commit is contained in:
Marek Nečada 2022-03-30 09:28:07 +03:00
parent 5af1fd7734
commit 45dba25b3c
3 changed files with 37 additions and 0 deletions

View File

@ -48,6 +48,7 @@ add_subdirectory(faddeeva)
add_subdirectory (qpms)
add_subdirectory (tests/catch EXCLUDE_FROM_ALL)
enable_testing()
add_subdirectory (tests EXCLUDE_FROM_ALL)

View File

@ -0,0 +1,5 @@
find_package(Catch2 REQUIRED)
add_executable(catchtest all_includes.C)
target_link_libraries(catchtest PRIVATE Catch2::Catch2WithMain qpms)

View File

@ -0,0 +1,31 @@
// Just to test that all headers are C++ compatible
#include <catch2/catch.hpp>
extern "C" {
#include <vswf.h>
//#include <beyn.h> // C++ keyword as an identifier
#include <gaunt.h>
#include <groups.h>
#include <kahansum.h>
#include <materials.h>
#include <optim.h>
#include <oshacks.h>
#include <parsing.h>
#include <qpms_error.h>
#include <qpms_specfunc.h>
#include <qpms_types.h>
#include <scatsystem.h>
#include <symmetries.h>
#include <tiny_inlines.h>
#include <tmatrices.h>
#include <tolerances.h>
// C++ type conversion issues:
//#include <lattices.h>
//#include <normalisation.h>
//#include <indexing.h>
//#include <pointgroups.h>
//#include <qpmsblas.h>
//#include <quaternions.h>
//#include <ewald.h>
//#include <translations.h>
//#include <vectors.h>
}