Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/ros2_medkit_gateway/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,10 @@ if(BUILD_TESTING)
ament_add_gtest(test_data_handlers test/test_data_handlers.cpp)
target_link_libraries(test_data_handlers gateway_lib)

# Add auth handler tests
ament_add_gtest(test_auth_handlers test/test_auth_handlers.cpp)
target_link_libraries(test_auth_handlers gateway_lib)

# Add health handler tests
ament_add_gtest(test_health_handlers test/test_health_handlers.cpp)
target_link_libraries(test_health_handlers gateway_lib)
Expand Down Expand Up @@ -417,6 +421,7 @@ if(BUILD_TESTING)
test_cyclic_subscription_handlers
test_update_manager
test_data_handlers
test_auth_handlers
test_health_handlers
)
foreach(_target ${_test_targets})
Expand Down
Loading