Skip to main content

A ROS package providing the GoogleTest C++ testing framework for unit testing in ROS applications.

Project description

Built using https://github.com/ycheng517/ros-python-wheels.

Generic Build Instructions

Setup

To build GoogleTest and your tests that use it, you need to tell your build system where to find its headers and source files. The exact way to do it depends on which build system you use, and is usually straightforward.

Build with CMake

GoogleTest comes with a CMake build script (CMakeLists.txt) that can be used on a wide range of platforms ("C" stands for cross-platform.). If you don't have CMake installed already, you can download it for free from http://www.cmake.org/.

CMake works by generating native makefiles or build projects that can be used in the compiler environment of your choice. You can either build GoogleTest as a standalone project or it can be incorporated into an existing CMake build for another project.

Standalone CMake Project

When building GoogleTest as a standalone project, the typical workflow starts with

git clone https://github.com/google/googletest.git -b v1.13.0
cd googletest        # Main directory of the cloned repository.
mkdir build          # Create a directory to hold the build output.
cd build
cmake ..             # Generate native build scripts for GoogleTest.

The above command also includes GoogleMock by default. And so, if you want to build only GoogleTest, you should replace the last command with

cmake .. -DBUILD_GMOCK=OFF

If you are on a *nix system, you should now see a Makefile in the current directory. Just type make to build GoogleTest. And then you can simply install GoogleTest if you are a system administrator.

make
sudo make install    # Install in /usr/local/ by default

If you use Windows and have Visual Studio installed, a gtest.sln file and several .vcproj files will be created. You can then build them using Visual Studio.

On Mac OS X with Xcode installed, a .xcodeproj file will be generated.

Incorporating Into An Existing CMake Project

If you want to use GoogleTest in a project which already uses CMake, the easiest way is to get installed libraries and headers.

  • Import GoogleTest by using find_package (or pkg_check_modules). For example, if find_package(GTest CONFIG REQUIRED) succeeds, you can use the libraries as GTest::gtest, GTest::gmock.

And a more robust and flexible approach is to build GoogleTest as part of that project directly. This is done by making the GoogleTest source code available to the main build and adding it using CMake's add_subdirectory() command. This has the significant advantage that the same compiler and linker settings are used between GoogleTest and the rest of your project, so issues associated with using incompatible libraries (eg debug/release), etc. are avoided. This is particularly useful on Windows. Making GoogleTest's source code available to the main build can be done a few different ways:

  • Download the GoogleTest source code manually and place it at a known location. This is the least flexible approach and can make it more difficult to use with continuous integration systems, etc.
  • Embed the GoogleTest source code as a direct copy in the main project's source tree. This is often the simplest approach, but is also the hardest to keep up to date. Some organizations may not permit this method.
  • Add GoogleTest as a git submodule or equivalent. This may not always be possible or appropriate. Git submodules, for example, have their own set of advantages and drawbacks.
  • Use CMake to download GoogleTest as part of the build's configure step. This approach doesn't have the limitations of the other methods.

The last of the above methods is implemented with a small piece of CMake code that downloads and pulls the GoogleTest code into the main build.

Just add to your CMakeLists.txt:

include(FetchContent)
FetchContent_Declare(
  googletest
  # Specify the commit you depend on and update it regularly.
  URL https://github.com/google/googletest/archive/5376968f6948923e2411081fd9372e71a59d8e77.zip
)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)

# Now simply link against gtest or gtest_main as needed. Eg
add_executable(example example.cpp)
target_link_libraries(example gtest_main)
add_test(NAME example_test COMMAND example)

Note that this approach requires CMake 3.14 or later due to its use of the FetchContent_MakeAvailable() command.

Visual Studio Dynamic vs Static Runtimes

By default, new Visual Studio projects link the C runtimes dynamically but GoogleTest links them statically. This will generate an error that looks something like the following: gtest.lib(gtest-all.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MTd_StaticDebug' doesn't match value 'MDd_DynamicDebug' in main.obj

GoogleTest already has a CMake option for this: gtest_force_shared_crt

Enabling this option will make gtest link the runtimes dynamically too, and match the project in which it is included.

C++ Standard Version

An environment that supports C++14 is required in order to successfully build GoogleTest. One way to ensure this is to specify the standard in the top-level project, for example by using the set(CMAKE_CXX_STANDARD 14) command along with set(CMAKE_CXX_STANDARD_REQUIRED ON). If this is not feasible, for example in a C project using GoogleTest for validation, then it can be specified by adding it to the options for cmake via the-DCMAKE_CXX_FLAGS option.

Tweaking GoogleTest

GoogleTest can be used in diverse environments. The default configuration may not work (or may not work well) out of the box in some environments. However, you can easily tweak GoogleTest by defining control macros on the compiler command line. Generally, these macros are named like GTEST_XYZ and you define them to either 1 or 0 to enable or disable a certain feature.

We list the most frequently used macros below. For a complete list, see file include/gtest/internal/gtest-port.h.

Multi-threaded Tests

GoogleTest is thread-safe where the pthread library is available. After #include <gtest/gtest.h>, you can check the GTEST_IS_THREADSAFE macro to see whether this is the case (yes if the macro is #defined to 1, no if it's undefined.).

If GoogleTest doesn't correctly detect whether pthread is available in your environment, you can force it with

-DGTEST_HAS_PTHREAD=1

or

-DGTEST_HAS_PTHREAD=0

When GoogleTest uses pthread, you may need to add flags to your compiler and/or linker to select the pthread library, or you'll get link errors. If you use the CMake script, this is taken care of for you. If you use your own build script, you'll need to read your compiler and linker's manual to figure out what flags to add.

As a Shared Library (DLL)

GoogleTest is compact, so most users can build and link it as a static library for the simplicity. You can choose to use GoogleTest as a shared library (known as a DLL on Windows) if you prefer.

To compile gtest as a shared library, add

-DGTEST_CREATE_SHARED_LIBRARY=1

to the compiler flags. You'll also need to tell the linker to produce a shared library instead - consult your linker's manual for how to do it.

To compile your tests that use the gtest shared library, add

-DGTEST_LINKED_AS_SHARED_LIBRARY=1

to the compiler flags.

Note: while the above steps aren't technically necessary today when using some compilers (e.g. GCC), they may become necessary in the future, if we decide to improve the speed of loading the library (see https://gcc.gnu.org/wiki/Visibility for details). Therefore you are recommended to always add the above flags when using GoogleTest as a shared library. Otherwise a future release of GoogleTest may break your build script.

Avoiding Macro Name Clashes

In C++, macros don't obey namespaces. Therefore two libraries that both define a macro of the same name will clash if you #include both definitions. In case a GoogleTest macro clashes with another library, you can force GoogleTest to rename its macro to avoid the conflict.

Specifically, if both GoogleTest and some other code define macro FOO, you can add

-DGTEST_DONT_DEFINE_FOO=1

to the compiler flags to tell GoogleTest to change the macro's name from FOO to GTEST_FOO. Currently FOO can be ASSERT_EQ, ASSERT_FALSE, ASSERT_GE, ASSERT_GT, ASSERT_LE, ASSERT_LT, ASSERT_NE, ASSERT_TRUE, EXPECT_FALSE, EXPECT_TRUE, FAIL, SUCCEED, TEST, or TEST_F. For example, with -DGTEST_DONT_DEFINE_TEST=1, you'll need to write

GTEST_TEST(SomeTest, DoesThis) { ... }

instead of

TEST(SomeTest, DoesThis) { ... }

in order to define a test.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ros_gtest_vendor-1.15.1-cp314-cp314t-manylinux_2_28_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

ros_gtest_vendor-1.15.1-cp314-cp314-manylinux_2_28_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

ros_gtest_vendor-1.15.1-cp313-cp313-manylinux_2_28_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

ros_gtest_vendor-1.15.1-cp312-cp312-manylinux_2_28_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

ros_gtest_vendor-1.15.1-cp311-cp311-manylinux_2_28_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

ros_gtest_vendor-1.15.1-cp310-cp310-manylinux_2_28_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

File details

Details for the file ros_gtest_vendor-1.15.1-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ros_gtest_vendor-1.15.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9eeabef28fc07bc2489be09ac8a94d048f2e53fd8ba88a9a28f5fb2f29ae76e2
MD5 9cd024eece4fbfd439c0a95fbd0f25fc
BLAKE2b-256 378d02da8986426100b5e382dbae980cf69f740c1bfc6fe6c0c6821fe24ae30c

See more details on using hashes here.

File details

Details for the file ros_gtest_vendor-1.15.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ros_gtest_vendor-1.15.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e60d4343256542d17c1193f751da5166ecf34725f6f69363ea083b66a650648
MD5 95be95c11ff0911dd4d53c039ae6c12b
BLAKE2b-256 41296f0dea48c4d40831f9f75133060e7042f41a497808076eea46a2e4bc7bf7

See more details on using hashes here.

File details

Details for the file ros_gtest_vendor-1.15.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ros_gtest_vendor-1.15.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5415b2a868d9f0251dd10972836d4454f1c6f6e87d9c385206cd0c250be225b
MD5 5434de9b01e0cb1c1f7e95aa161e4deb
BLAKE2b-256 c818a3064f53fd05e5c6b6c9d6c107a15928bdcd85630986a7e0eb7d6151e3e4

See more details on using hashes here.

File details

Details for the file ros_gtest_vendor-1.15.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ros_gtest_vendor-1.15.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29414f21e35c9e4d0c4e6d44a3dcaf2343c903451b6d18bc3125838bd6596fbd
MD5 22d8b8ed869e58ea01737bf2ad14c678
BLAKE2b-256 758ec034d0b4b2cf431aebd74eed82a3048d0571b847f71952454c59da7c60dc

See more details on using hashes here.

File details

Details for the file ros_gtest_vendor-1.15.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ros_gtest_vendor-1.15.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a578c55eca01c7d215e54bf1dd3172ada677b591dd2f5d3c8260b882364ee6e
MD5 9a1730ff52010714c47d5287cad638ee
BLAKE2b-256 698e8e64a30e8d4a0d34a062d73ce6e13ab9e17695c478130c0b89365c829525

See more details on using hashes here.

File details

Details for the file ros_gtest_vendor-1.15.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ros_gtest_vendor-1.15.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7f5ea83913a7007676496d7ed2cf9d7bed6599689ada3f73ade745574e6939a
MD5 e12f03287b1e75414ca08714c61d319b
BLAKE2b-256 c3a01a7cda14a351ae824cfca5610b0751f476d1a1f1135e5f30b7502abf9a56

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page