Lines Matching full:googletest
3 This tutorial aims to get you up and running with GoogleTest using the Bazel
4 build system. If you're using GoogleTest for the first time or need a refresher,
14 GoogleTest team.
17 compatible with GoogleTest.
41 recommended way to depend on GoogleTest is to use a
53 …urls = ["https://github.com/google/googletest/archive/5ab508a01f9eb089207ee87fd547d290da39d015.zip…
54 strip_prefix = "googletest-5ab508a01f9eb089207ee87fd547d290da39d015",
58 The above configuration declares a dependency on GoogleTest which is downloaded
61 GoogleTest version to use; we recommend updating the hash often to point to the
64 Now you're ready to build C++ code that uses GoogleTest.
68 With your Bazel workspace set up, you can now use GoogleTest code within your
86 GoogleTest provides [assertions](primer.md#assertions) that you use to test the
87 behavior of your code. The above sample includes the main GoogleTest header file
103 GoogleTest (`//:gtest_main`) using the prefix you specified in the `WORKSPACE`
139 GoogleTest.
146 variety of GoogleTest features.