Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1#include "gtest/gtest.h"
2#include "rclcpp/rclcpp.hpp"
3
11int main(int argc, char *argv[]) {
12 rclcpp::init(0, nullptr);
13 ::testing::InitGoogleTest(&argc, argv);
14 int a = RUN_ALL_TESTS();
15 rclcpp::shutdown();
16 return a;
17}
Definition main.py:1