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.
42 recommended way to depend on GoogleTest is to use a
54 …urls = ["https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip…
55 strip_prefix = "googletest-609281088cfefc76f9d0ce82e1ff6c30cc3591e5",
59 The above configuration declares a dependency on GoogleTest which is downloaded
62 GoogleTest version to use; we recommend updating the hash often to point to the
77 Now you're ready to build C++ code that uses GoogleTest.
81 With your Bazel workspace set up, you can now use GoogleTest code within your
99 GoogleTest provides [assertions](primer.md#assertions) that you use to test the
100 behavior of your code. The above sample includes the main GoogleTest header file
118 GoogleTest (`//:gtest_main`) using the prefix you specified in the `WORKSPACE`
154 GoogleTest.
161 variety of GoogleTest features.