Add unit tests.

This commit is contained in:
2021-10-05 01:58:31 +01:00
parent 1f31d93572
commit c936a649bb
5 changed files with 74 additions and 0 deletions

14
tests/CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
# 'Google_test' is the subproject name
project(tests)
# 'lib' is the folder with Google Test sources
add_subdirectory(lib)
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data/random
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/data/random)
# 'Google_Tests_run' is the target name
# 'test1.cpp tests2.cpp' are source files with tests
add_executable(tests_run crc32.cpp)
target_link_libraries(tests_run gtest gtest_main "Aaru.Checksums.Native")