summaryrefslogtreecommitdiffstats
path: root/googletest/docs/advanced.md
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-10-23 19:13:41 (GMT)
committerGennadiy Civil <misterg@google.com>2018-10-23 19:13:42 (GMT)
commit20eaf6e3a9dbefcb1fb91b9a438aaef70cd999cf (patch)
tree5c1342dd6e163bf6ffca9cb3320733f2ba25c618 /googletest/docs/advanced.md
parenta743780ad03ba3cbcb2f76f8a74249f0cae46acc (diff)
parent0cefda7749756806445a9caab4d8517c808f61f6 (diff)
downloadgoogletest-20eaf6e3a9dbefcb1fb91b9a438aaef70cd999cf.zip
googletest-20eaf6e3a9dbefcb1fb91b9a438aaef70cd999cf.tar.gz
googletest-20eaf6e3a9dbefcb1fb91b9a438aaef70cd999cf.tar.bz2
Merge pull request #1911 from BrukerJWD:isnice
PiperOrigin-RevId: 218384341
Diffstat (limited to 'googletest/docs/advanced.md')
-rw-r--r--googletest/docs/advanced.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md
index 481b1fe..b8bb5cd 100644
--- a/googletest/docs/advanced.md
+++ b/googletest/docs/advanced.md
@@ -1487,7 +1487,7 @@ returns the value of `testing::PrintToString(GetParam())`. It does not work for
NOTE: test names must be non-empty, unique, and may only contain ASCII
alphanumeric characters. In particular, they [should not contain
-underscores](https://github.com/google/googletest/blob/master/googletest/docs/faq.md#why-should-test-case-names-and-test-names-not-contain-underscore).
+underscores](https://g3doc.corp.google.com/third_party/googletest/googletest/g3doc/faq.md#no-underscores).
```c++
class MyTestCase : public testing::TestWithParam<int> {};
@@ -2204,7 +2204,8 @@ environment variable to `0`.
googletest can emit a detailed XML report to a file in addition to its normal
textual output. The report contains the duration of each test, and thus can help
-you identify slow tests.
+you identify slow tests. The report is also used by the http://unittest
+dashboard to show per-test-method error messages.
To generate the XML report, set the `GTEST_OUTPUT` environment variable or the
`--gtest_output` flag to the string `"xml:path_to_output_file"`, which will