Package-Identification-using-Turtlebot
Robots have been used to improve efficiency in a various tasks in warehouses such as package handling, identification and organization. This project aims to simulate the use of Turtlebot in identifying packages with QR codes, in a warehouse setting.
Functions | Variables
main.cpp File Reference
#include <gtest/gtest.h>
#include <ros/ros.h>

Functions

int main (int argc, char **argv)
 Run all the tests that were declared with TEST() More...
 

Variables

std::shared_ptr< ros::NodeHandle > nh
 

Function Documentation

int main ( int  argc,
char **  argv 
)

Run all the tests that were declared with TEST()

Parameters
[in]argc
[in]argv
Returns
0 if executed with no errors
54  {
55  testing::InitGoogleTest(&argc, argv);
56  ros::init(argc, argv, "tester");
57  nh.reset(new ros::NodeHandle);
58  return RUN_ALL_TESTS();
59 }
std::shared_ptr< ros::NodeHandle > nh
Definition: main.cpp:43

Variable Documentation

std::shared_ptr<ros::NodeHandle> nh