#include <string>
#include <vector>
#include <thread>
#include <atomic>
#include <memory>
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <ros/ros.h>
#include <canopen_chain_node/GetObject.h>
#include <sensor_msgs/JointState.h>
#include <pilz_utils/wait_for_message.h>
#include <pilz_utils/wait_for_service.h>
#include <pilz_testutils/async_test.h>
#include <prbt_support/system_info.h>
#include <prbt_support/system_info_exception.h>
Go to the source code of this file.
|
int | main (int argc, char *argv[]) |
|
| system_info_tests::TEST_F (SystemInfoTests, TestExceptions) |
| Tests that exception stores and returns correct error message. More...
|
|
| system_info_tests::TEST_F (SystemInfoTests, testNodeNamesMissing) |
| Checks that exception is thrown if param "/prbt/driver/nodes" can not be found on parameter server. More...
|
|
| system_info_tests::TEST_F (SystemInfoTests, testCANUpAndRunning) |
| Tests that constructor waits until CAN is up and running by waiting for the "/joint_states" topic. More...
|
|
| system_info_tests::TEST_F (SystemInfoTests, testCANServiceUpAndRunning) |
| Tests that constructor waits until ros_canopen service "get_object" is advertised. More...
|
|
| system_info_tests::TEST_F (SystemInfoTests, testServiceResponseFalse) |
| Tests that exception is thrown in case the service returns as response "false". More...
|
|
| system_info_tests::TEST_F (SystemInfoTests, testServiceFail) |
| Tests that exception is thrown in case the service returns "false". More...
|
|
| system_info_tests::TEST_F (SystemInfoTests, testGetFirmwareVersions) |
| Tests that SystemInfo class returns correct firmware versions for each joint, given that everything needed by SystemInfo class works correctly. More...
|
|
| system_info_tests::TEST_F (SystemInfoTests, testGetFirmwareVersionsResizeTo40Chars) |
| Tests that the firmware string is trimmed to 40chars See https://github.com/PilzDE/pilz_robots/issues/299. More...
|
|
◆ main()
int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |