Skip to content

Commit 1a5a78b

Browse files
Abseil Teamderekmauro
Abseil Team
authored andcommitted
Googletest export
Add files for GitHub Pages PiperOrigin-RevId: 357096486
1 parent 9e2c7ab commit 1a5a78b

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

docs/faq.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -580,8 +580,6 @@ TEST(MyDeathTest, CompoundStatement) {
580580
}
581581
```
582582
583-
gtest-death-test_test.cc contains more examples if you are interested.
584-
585583
## I have a fixture class `FooTest`, but `TEST_F(FooTest, Bar)` gives me error ``"no matching function for call to `FooTest::FooTest()'"``. Why?
586584
587585
Googletest needs to be able to create objects of your test fixture class, so it
@@ -663,14 +661,15 @@ break the death test (e.g. by changing the regex pattern it is expected to
663661
match). Admittedly, this is a hack. We'll consider a more permanent solution
664662
after the fork-and-exec-style death tests are implemented.
665663
666-
## The compiler complains about "no match for 'operator<<'" when I use an assertion. What gives?
664+
## The compiler complains about `no match for 'operator<<'` when I use an assertion. What gives?
667665
668666
If you use a user-defined type `FooType` in an assertion, you must make sure
669667
there is an `std::ostream& operator<<(std::ostream&, const FooType&)` function
670668
defined such that we can print a value of `FooType`.
671669
672670
In addition, if `FooType` is declared in a name space, the `<<` operator also
673-
needs to be defined in the *same* name space. See abseil.io/tips/49 for details.
671+
needs to be defined in the *same* name space. See
672+
[Tip of the Week #49](http://abseil.io/tips/49) for details.
674673
675674
## How do I suppress the memory leak messages on Windows?
676675
@@ -691,10 +690,10 @@ mistake in production. Such cleverness also leads to
691690
advise against the practice, and googletest doesn't provide a way to do it.
692691
693692
In general, the recommended way to cause the code to behave differently under
694-
test is [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection). You can inject
693+
test is [Dependency Injection](http://en.wikipedia.org/wiki/Dependency_injection). You can inject
695694
different functionality from the test and from the production code. Since your
696695
production code doesn't link in the for-test logic at all (the
697-
[`testonly`](https://docs.bazel.build/versions/master/be/common-definitions.html#common.testonly) attribute for BUILD targets helps to ensure
696+
[`testonly`](http://docs.bazel.build/versions/master/be/common-definitions.html#common.testonly) attribute for BUILD targets helps to ensure
698697
that), there is no danger in accidentally running it.
699698
700699
However, if you *really*, *really*, *really* have no choice, and if you follow

docs/gmock_cook_book.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1452,6 +1452,8 @@ using ::testing::ElementsAreArray;
14521452

14531453
Use `Pair` when comparing maps or other associative containers.
14541454

1455+
{% raw %}
1456+
14551457
```cpp
14561458
using testing::ElementsAre;
14571459
using testing::Pair;
@@ -1460,6 +1462,8 @@ using testing::Pair;
14601462
EXPECT_THAT(m, ElementsAre(Pair("a", 1), Pair("b", 2), Pair("c", 3)));
14611463
```
14621464

1465+
{% endraw %}
1466+
14631467
**Tips:**
14641468

14651469
* `ElementsAre*()` can be used to match *any* container that implements the
@@ -2244,7 +2248,7 @@ former, and the former's return type can be implicitly converted to that of the
22442248
latter. So, you can invoke something whose type is *not* exactly the same as the
22452249
mock function, as long as it's safe to do so - nice, huh?
22462250

2247-
**`Note:`{.escaped}**
2251+
Note that:
22482252

22492253
* The action takes ownership of the callback and will delete it when the
22502254
action itself is destructed.
@@ -2330,7 +2334,7 @@ bool Job2(int n, char c) { ... }
23302334
foo.ComplexJob(20); // Invokes Job2(5, 'a').
23312335
```
23322336

2333-
**`Note:`{.escaped}**
2337+
Note that:
23342338

23352339
* The action takes ownership of the callback and will delete it when the
23362340
action itself is destructed.
@@ -2875,8 +2879,8 @@ work with non-copyable objects; you'll have to use functors instead.
28752879
#### Legacy workarounds for move-only types {#LegacyMoveOnly}
28762880

28772881
Support for move-only function arguments was only introduced to gMock in April
2878-
2017. In older code, you may encounter the following workaround for the lack of
2879-
this feature (it is no longer necessary - we're including it just for
2882+
of 2017. In older code, you may encounter the following workaround for the lack
2883+
of this feature (it is no longer necessary - we're including it just for
28802884
reference):
28812885

28822886
```cpp

docs/pkgconfig.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ $ pkg-config --libs gtest
145145

146146
which contains the correct sysroot now. For a more comprehensive guide to also
147147
including `${CHOST}` in build system calls, see the excellent tutorial by Diego
148-
Elio Pettenò: https://autotools.io/pkgconfig/cross-compiling.html
148+
Elio Pettenò: <https://autotools.io/pkgconfig/cross-compiling.html>

0 commit comments

Comments
 (0)