Add tests for the real filesystem path

This commit is contained in:
pmb
2025-06-25 17:36:49 -07:00
parent 2a0c8b6dc8
commit 977ca7ce7b
2 changed files with 220 additions and 0 deletions
+6
View File
@@ -26,6 +26,12 @@ test_mock_exe = executable('test_handler_mock',
'test_handler_mock.cpp', 'handler.cpp',
dependencies : [boost_dep, gtest_dep, gmock_dep])
# Real filesystem test executable
test_real_fs_exe = executable('test_handler_real_filesystem',
'test_handler_real_filesystem.cpp', 'handler.cpp',
dependencies : [boost_dep, gtest_dep, gmock_dep])
# Register the tests
test('handler_tests', test_exe)
test('handler_mock_tests', test_mock_exe)
test('handler_real_filesystem_tests', test_real_fs_exe)