-
Notifications
You must be signed in to change notification settings - Fork 4
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 a main that uses all of the functional programming principles #26
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we move this to something like an experimental folder or something so it doesn't pollute the test folder with something that isn't a test?
rclcpp::Service<example_srvs::srv::SetMap>::SharedPtr set_map_service = node->create_service<example_srvs::srv::SetMap>("set_costmap", mo.set_costmap_wrapper_); | ||
|
||
rclcpp::Service<example_srvs::srv::GetPath>::SharedPtr get_path_service = node->create_service<example_srvs::srv::GetPath>("generate_global_path", mo.generate_path_wrapper_); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
disapprove
Description
Wrote a main that uses functional programming principles and should have everything be testable in theory.
Testing
Launch the container and run
colcon build
. Ensure there are no errors.