diff options
author | Abseil Team <absl-team@google.com> | 2020-08-10 14:32:23 (GMT) |
---|---|---|
committer | Gennadiy Rozental <rogeeff@google.com> | 2020-08-12 06:41:02 (GMT) |
commit | 3d93f88081b1d16c96308f4a9a5e8859f3538bb9 (patch) | |
tree | 2524b4ae5deacc9ff1e6d11774e9c59081a6a8e2 /googletest/docs | |
parent | 3af06fe1664d30f98de1e78c53a7087e842a2547 (diff) | |
download | googletest-3d93f88081b1d16c96308f4a9a5e8859f3538bb9.zip googletest-3d93f88081b1d16c96308f4a9a5e8859f3538bb9.tar.gz googletest-3d93f88081b1d16c96308f4a9a5e8859f3538bb9.tar.bz2 |
Googletest export
internal change
PiperOrigin-RevId: 325799949
Diffstat (limited to 'googletest/docs')
-rw-r--r-- | googletest/docs/advanced.md | 2 | ||||
-rw-r--r-- | googletest/docs/faq.md | 2 | ||||
-rw-r--r-- | googletest/docs/pkgconfig.md | 2 | ||||
-rw-r--r-- | googletest/docs/primer.md | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md index ade87e2..f667532 100644 --- a/googletest/docs/advanced.md +++ b/googletest/docs/advanced.md @@ -2,6 +2,8 @@ <!-- GOOGLETEST_CM0016 DO NOT DELETE --> +<!-- GOOGLETEST_CM0035 DO NOT DELETE --> + ## Introduction Now that you have read the [googletest Primer](primer.md) and learned how to diff --git a/googletest/docs/faq.md b/googletest/docs/faq.md index ebfecd3..f290f02 100644 --- a/googletest/docs/faq.md +++ b/googletest/docs/faq.md @@ -2,6 +2,8 @@ <!-- GOOGLETEST_CM0014 DO NOT DELETE --> +<!-- GOOGLETEST_CM0035 DO NOT DELETE --> + ## Why should test suite names and test names not contain underscore? Underscore (`_`) is special, as C++ reserves the following to be used by the diff --git a/googletest/docs/pkgconfig.md b/googletest/docs/pkgconfig.md index b9bef3f..aed4ad4 100644 --- a/googletest/docs/pkgconfig.md +++ b/googletest/docs/pkgconfig.md @@ -1,5 +1,7 @@ ## Using GoogleTest from various build systems +<!-- GOOGLETEST_CM0035 DO NOT DELETE --> + GoogleTest comes with pkg-config files that can be used to determine all necessary flags for compiling and linking to GoogleTest (and GoogleMock). Pkg-config is a standardised plain-text format containing diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md index 2f459fd..ed44369 100644 --- a/googletest/docs/primer.md +++ b/googletest/docs/primer.md @@ -1,5 +1,7 @@ # Googletest Primer +<!-- GOOGLETEST_CM0035 DO NOT DELETE --> + ## Introduction: Why googletest? *googletest* helps you write better C++ tests. |