Commit Inicial

This commit is contained in:
2024-05-21 12:44:33 +02:00
commit 40ac38011a
20 changed files with 12880 additions and 0 deletions

10
tests/CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
if(ENABLE_TESTING)
include_directories(
${ArffFiles_SOURCE_DIR}
${CMAKE_BINARY_DIR}/configured_files/include
)
set(TEST_ARFFILES "unit_tests_arffFiles")
add_executable(${TEST_ARFFILES} TestArffFiles.cc)
target_link_libraries(${TEST_ARFFILES} PUBLIC Catch2::Catch2WithMain)
add_test(NAME ${TEST_ARFFILES} COMMAND ${TEST_ARFFILES})
endif(ENABLE_TESTING)