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++11
60 googletest
61 URL https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip
65 FetchContent_MakeAvailable(googletest)
68 The above configuration declares a dependency on GoogleTest which is downloaded
70 the Git commit hash of the GoogleTest version to use; we recommend updating the
78 With GoogleTest declared as a dependency, you can use GoogleTest code within
96 GoogleTest provides [assertions](primer.md#assertions) that you use to test the
97 behavior of your code. The above sample includes the main GoogleTest header file
114 include(GoogleTest)
119 you want to build (`hello_test`), and links it to GoogleTest (`gtest_main`). The
122 [`GoogleTest` CMake module](https://cmake.org/cmake/help/git-stage/module/GoogleTest.html).
149 GoogleTest.
156 variety of GoogleTest features.