test(tests): brought testing framework for logging from SERiF

This commit is contained in:
2025-06-21 08:17:56 -04:00
parent 94cf00f9e0
commit dcfab05961
5 changed files with 129 additions and 0 deletions

7
tests/meson.build Normal file
View File

@@ -0,0 +1,7 @@
# Google Test dependency
gtest_dep = dependency('gtest', main: true, required : true)
gtest_main = dependency('gtest_main', required: true)
gtest_nomain_dep = dependency('gtest', main: false, required : true)
# Subdirectories for unit and integration tests
subdir('logging')