Lines Matching full:googletest
3 This tutorial aims to get you up and running with GoogleTest using CMake. If
4 you're using GoogleTest for the first time or need a refresher, we recommend
23 compatible with GoogleTest.
36 GoogleTest.
45 GoogleTest. There are many ways to express dependencies in the CMake ecosystem;
55 # GoogleTest requires at least C++14
61 googletest
62 URL https://github.com/google/googletest/archive/03597a01ee50ed33e9dfd640b249b4be3799d395.zip
66 FetchContent_MakeAvailable(googletest)
69 The above configuration declares a dependency on GoogleTest which is downloaded
71 the Git commit hash of the GoogleTest version to use; we recommend updating the
79 With GoogleTest declared as a dependency, you can use GoogleTest code within
97 GoogleTest provides [assertions](primer.md#assertions) that you use to test the
98 behavior of your code. The above sample includes the main GoogleTest header file
115 include(GoogleTest)
120 you want to build (`hello_test`), and links it to GoogleTest (`gtest_main`). The
123 [`GoogleTest` CMake module](https://cmake.org/cmake/help/git-stage/module/GoogleTest.html).
150 GoogleTest.
157 variety of GoogleTest features.