We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 777b81c commit e91e238Copy full SHA for e91e238
source/Tutorials/Intermediate/Testing/Cpp.rst
@@ -23,7 +23,7 @@ We'll start off with our code in a file called ``test/tutorial_test.cpp``
23
ASSERT_EQ(4, 2 + 2);
24
}
25
26
- int main(int argc, char** argv)
+ int main(int argc, char ** argv)
27
{
28
testing::InitGoogleTest(&argc, argv);
29
return RUN_ALL_TESTS();
@@ -50,9 +50,6 @@ CMakeLists.txt
50
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
51
$<INSTALL_INTERFACE:include>
52
)
53
- ament_target_dependencies(${PROJECT_NAME}_tutorial_test
54
- std_msgs
55
- )
56
target_link_libraries(${PROJECT_NAME}_tutorial_test name_of_local_library)
57
endif()
58
0 commit comments