Googletest export
Fixes #3222, fixes #3225, closes #3223 PiperOrigin-RevId: 352066131
This commit is contained in:
parent
5ae6e6e7e1
commit
d128fc8252
@ -371,7 +371,7 @@ Verifies that `val1` is less than, or almost equal to, `val2`. You can replace
|
||||
|
||||
### Asserting Using gMock Matchers
|
||||
|
||||
[gMock](gmock_index.md) comes with
|
||||
[gMock](gmock_for_dummies.md) comes with
|
||||
[a library of matchers](gmock_cheat_sheet.md#MatcherList) for
|
||||
validating arguments passed to mock objects. A gMock *matcher* is basically a
|
||||
predicate that knows how to describe itself. It can be used in these assertion
|
||||
|
@ -1,7 +1,5 @@
|
||||
# Community-Created Documentation
|
||||
|
||||
go/gunit-community-created-docs
|
||||
|
||||
The following is a list, in no particular order, of links to documentation
|
||||
created by the Googletest community.
|
||||
|
||||
|
@ -289,8 +289,7 @@ will be changed.
|
||||
`IsTrue` and `IsFalse` are useful when you need to use a matcher, or for types
|
||||
that can be explicitly converted to Boolean, but are not implicitly converted to
|
||||
Boolean. In other cases, you can use the basic
|
||||
[`EXPECT_TRUE` and `EXPECT_FALSE`](../../googletest/docs/primer#basic-assertions)
|
||||
assertions.
|
||||
[`EXPECT_TRUE` and `EXPECT_FALSE`](primer.md#basic-assertions) assertions.
|
||||
|
||||
### Floating-Point Matchers {#FpMatchers}
|
||||
|
||||
@ -340,9 +339,8 @@ The `argument` can be either a C string or a C++ string object:
|
||||
|
||||
`ContainsRegex()` and `MatchesRegex()` take ownership of the `RE` object. They
|
||||
use the regular expression syntax defined
|
||||
[here](../../googletest/docs/advanced.md#regular-expression-syntax). All of
|
||||
these matchers, except `ContainsRegex()` and `MatchesRegex()` work for wide
|
||||
strings as well.
|
||||
[here](advanced.md#regular-expression-syntax). All of these matchers, except
|
||||
`ContainsRegex()` and `MatchesRegex()` work for wide strings as well.
|
||||
|
||||
### Container Matchers
|
||||
|
||||
|
@ -4253,7 +4253,7 @@ value printer.
|
||||
This printer knows how to print built-in C++ types, native arrays, STL
|
||||
containers, and any type that supports the `<<` operator. For other types, it
|
||||
prints the raw bytes in the value and hopes that you the user can figure it out.
|
||||
[googletest's advanced guide](../../googletest/docs/advanced.md#teaching-googletest-how-to-print-your-values)
|
||||
[The GoogleTest advanced guide](advanced.md#teaching-googletest-how-to-print-your-values)
|
||||
explains how to extend the printer to do a better job at printing your
|
||||
particular type than to dump the bytes.
|
||||
|
||||
|
@ -505,7 +505,7 @@ always return 100 as `n++` is only evaluated once. Similarly, `Return(new Foo)`
|
||||
will create a new `Foo` object when the `EXPECT_CALL()` is executed, and will
|
||||
return the same pointer every time. If you want the side effect to happen every
|
||||
time, you need to define a custom action, which we'll teach in the
|
||||
[cook book](http://<!-- GOOGLETEST_CM0012 DO NOT DELETE -->).
|
||||
[cook book](gmock_cook_book.md).
|
||||
|
||||
Time for another quiz! What do you think the following means?
|
||||
|
||||
|
@ -30,10 +30,10 @@ gMock:
|
||||
|
||||
Details and examples can be found here:
|
||||
|
||||
* [gMock for Dummies](docs/for_dummies.md)
|
||||
* [Legacy gMock FAQ](docs/gmock_faq.md)
|
||||
* [gMock Cookbook](docs/cook_book.md)
|
||||
* [gMock Cheat Sheet](docs/cheat_sheet.md)
|
||||
* [gMock for Dummies](../docs/gmock_for_dummies.md)
|
||||
* [Legacy gMock FAQ](../docs/gmock_faq.md)
|
||||
* [gMock Cookbook](../docs/gmock_cook_book.md)
|
||||
* [gMock Cheat Sheet](../docs/gmock_cheat_sheet.md)
|
||||
|
||||
Please note that code under scripts/generator/ is from the
|
||||
[cppclean project](http://code.google.com/p/cppclean/) and under the Apache
|
||||
|
Loading…
Reference in New Issue
Block a user