Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | MIT License |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/nova-utd/navigator.git |
VCS Type | git |
VCS Version | dev |
Last Updated | 2025-03-25 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Joshua Williams
Authors
voltron_test_utils
Contains various utilities used to test our code. The different features included are listed below. Currently the only available features are TestPublisher and TestSubscriber:
TestPublisher
This is a templatized utility class to allow test cases to publish messages of any type to a topic.
Usage
First, make sure that you call rclcpp::init()
and
rclcpp::shutdown()
in your code - the TestPublisher will not do that
for you! To use, simply include the TestPublisher.hpp header in your
code and instantiate it as TestPublisher<MyMessageType>
my_publisher("my_topic_name");
. You can then call
`my_publisher.send_message(MyMessageType message) to publish
messages - simple!
Notes
Do not try to call rclcpp::spin()
on a TestPublisher - it is not a
ROS node. Rather, it wraps a ROS node a spins when necessary.
TestSubscriber
The slightly more complex counterpart of TestPublisher, TestSubscriber allows your test cases to receive messages of any type on arbitrary topics.
Usage
Instantiate it the same way as TestPublisher:
TestSubscriber<MyMessageType> my_subscriber("my_topic_name");
. You
can then call my_subscriber.has_message_ready()
to see if any
messages are in the queue, and my_subscriber.get_message()
to get a
pointer to the message.
Notes
Again, this is not a ROS node. Don’t try to call rclcpp::spin()
on
it. DO call rclcpp::init()
and rclcpp::shutdown()
before and
after using!
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
cyclonedds | |
ament_cmake | |
ament_cmake_auto | |
rclcpp | |
std_msgs | |
std_srvs | |
ament_cmake_gtest | |
ament_lint_auto |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
pid_controller |