diff options
author | Gennadiy Civil <misterg@google.com> | 2018-06-11 11:40:35 -0400 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-06-11 11:40:35 -0400 |
commit | 8f87d00398228925b1542b81710a9015c8f68e7b (patch) | |
tree | a383d30b17b861537037174038fc3e15daa6e055 /googlemock/docs/ForDummies.md | |
parent | de47b0d30c1d2a2072eb1c2a2e852d6aaa028931 (diff) | |
download | googletest-8f87d00398228925b1542b81710a9015c8f68e7b.tar.gz googletest-8f87d00398228925b1542b81710a9015c8f68e7b.tar.bz2 googletest-8f87d00398228925b1542b81710a9015c8f68e7b.zip |
Rename AdvancedGuide.md to advanced.md and adjust the links.
Part of documentation rationalization work
Diffstat (limited to 'googlemock/docs/ForDummies.md')
-rw-r--r-- | googlemock/docs/ForDummies.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/ForDummies.md b/googlemock/docs/ForDummies.md index 76910569..1e0fd416 100644 --- a/googlemock/docs/ForDummies.md +++ b/googlemock/docs/ForDummies.md @@ -187,7 +187,7 @@ sometimes causes the test program to crash. You'll still be able to notice that the test has failed, but it's not a graceful failure. A better solution is to use Google Test's -[event listener API](../../googletest/docs/AdvancedGuide.md#extending-google-test-by-handling-test-events) +[event listener API](../../googletest/docs/advanced.md#extending-google-test-by-handling-test-events) to report a test failure to your testing framework properly. You'll need to implement the `OnTestPartResult()` method of the event listener interface, but it should be straightforward. |