diff options
author | Herbert Thielen <thielen@hs-worms.de> | 2017-08-31 14:10:36 (GMT) |
---|---|---|
committer | Herbert Thielen <thielen@hs-worms.de> | 2017-08-31 14:10:36 (GMT) |
commit | 14cf7f574a4fac65525620e552577b7f57c9b867 (patch) | |
tree | 79259a3a594b898c920f86df07d9d69af65be30c /googletest/docs | |
parent | 16bfba08e2c63c33834a98d092cd6f1a3e547289 (diff) | |
download | googletest-14cf7f574a4fac65525620e552577b7f57c9b867.zip googletest-14cf7f574a4fac65525620e552577b7f57c9b867.tar.gz googletest-14cf7f574a4fac65525620e552577b7f57c9b867.tar.bz2 |
fix example's comment
Diffstat (limited to 'googletest/docs')
-rw-r--r-- | googletest/docs/FAQ.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/docs/FAQ.md b/googletest/docs/FAQ.md index 36f5f7f..76c2372 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? ## |