Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dependency injection example using path generator #23

Merged
merged 1 commit into from
Sep 15, 2023
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
4 changes: 4 additions & 0 deletions functional_programming_tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ find_package(std_msgs REQUIRED)

if(BUILD_TESTING)
find_package(ament_cmake_gtest REQUIRED)
find_package(ament_cmake_gmock REQUIRED)
ament_add_gtest(with_functional_programming test/with_functional_programming.cpp TIMEOUT 5)
ament_target_dependencies(with_functional_programming rclcpp std_msgs)

ament_add_gtest(without_functional_programming test/without_functional_programming.cpp TIMEOUT 5)
ament_target_dependencies(without_functional_programming rclcpp std_msgs example_srvs)

ament_add_gmock(with_dependency_injection test/with_dependency_injection.cpp TIMEOUT 5)
ament_target_dependencies(with_dependency_injection rclcpp std_msgs example_srvs)
endif()

ament_package()
Loading