aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-08-31 12:10:49 -0400
committerGitHub <noreply@github.com>2017-08-31 12:10:49 -0400
commit92e920730daecd3fd4e19d1ce9fa52a3558c2d57 (patch)
tree4034727008c9a00677bcf26fdb9c9dd98f3e416d
parenta430e9c176bd78d5deed693b1239dc96c95a1ec2 (diff)
parent84bd72ba3cc7e8c9f46558154413946ab8048d4d (diff)
downloadgoogletest-92e920730daecd3fd4e19d1ce9fa52a3558c2d57.tar.gz
googletest-92e920730daecd3fd4e19d1ce9fa52a3558c2d57.tar.bz2
googletest-92e920730daecd3fd4e19d1ce9fa52a3558c2d57.zip
Merge pull request #1240 from aninf-wo/hethi/fix-faq-example-comment
fix example's comment
-rw-r--r--googletest/docs/FAQ.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/docs/FAQ.md b/googletest/docs/FAQ.md
index 36f5f7fb..76c23727 100644
--- a/googletest/docs/FAQ.md
+++ b/googletest/docs/FAQ.md
@@ -1034,7 +1034,7 @@ namespace bar {
TEST(CoolTest, DoSomething) {
SUCCEED();
}
-} // namespace foo
+} // namespace bar
```
However, the following code is **not allowed** and will produce a runtime error from Google Test because the test methods are using different test fixture classes with the same test case name.
@@ -1052,7 +1052,7 @@ class CoolTest : public ::testing::Test {}; // Fixture: bar::CoolTest
TEST_F(CoolTest, DoSomething) {
SUCCEED();
}
-} // namespace foo
+} // namespace bar
```
## How do I build Google Testing Framework with Xcode 4? ##