Lines Matching +full:test +full:- +full:docs
28 [Bazel workspace](https://docs.bazel.build/versions/main/build-ref.html#workspace)
42 [Bazel external dependency](https://docs.bazel.build/versions/main/external.html)
44 [`http_archive` rule](https://docs.bazel.build/versions/main/repo/http.html#http_archive).
54 strip_prefix = "googletest-5ab508a01f9eb089207ee87fd547d290da39d015",
78 TEST(HelloTest, BasicAssertions) {
86 GoogleTest provides [assertions](primer.md#assertions) that you use to test the
102 This `cc_test` rule declares the C++ test binary you want to build, and links to
106 [Bazel C++ Tutorial](https://docs.bazel.build/versions/main/tutorial/cpp.html).
108 Now you can build and run your test:
111 <strong>my_workspace$ bazel test --test_output=all //:hello_test</strong>
113 INFO: Found 1 test target...
115 ==================== Test output for //:hello_test:
117 [==========] Running 1 test from 1 test suite.
118 [----------] Global test environment set-up.
119 [----------] 1 test from HelloTest
122 [----------] 1 test from HelloTest (0 ms total)
124 [----------] Global test environment tear-down
125 [==========] 1 test from 1 test suite ran. (0 ms total)
126 [ PASSED ] 1 test.
128 Target //:hello_test up-to-date:
129 bazel-bin/hello_test
131 INFO: 27 processes: 8 internal, 19 linux-sandbox.
138 Congratulations! You've successfully built and run a test binary using