summaryrefslogtreecommitdiffstats
path: root/include/gtest/gtest.h
diff options
context:
space:
mode:
authorjgm <jgm@google.com>2012-03-09 17:12:39 (GMT)
committerjgm <jgm@google.com>2012-03-09 17:12:39 (GMT)
commitf0b86fc3b0f625e1db84f3632cb37bd9eae6ae19 (patch)
treedea331f222e639cfc37f481766bbc88ce20dc7cb /include/gtest/gtest.h
parentcfb40870bc74dc57616e286461a89c9f259b349d (diff)
downloadgoogletest-f0b86fc3b0f625e1db84f3632cb37bd9eae6ae19.zip
googletest-f0b86fc3b0f625e1db84f3632cb37bd9eae6ae19.tar.gz
googletest-f0b86fc3b0f625e1db84f3632cb37bd9eae6ae19.tar.bz2
Misc small updates to some debug death code, and to messages streaming to macros
Diffstat (limited to 'include/gtest/gtest.h')
-rw-r--r--include/gtest/gtest.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/gtest/gtest.h b/include/gtest/gtest.h
index 2d570a2..226307e 100644
--- a/include/gtest/gtest.h
+++ b/include/gtest/gtest.h
@@ -1731,12 +1731,6 @@ class TestWithParam : public Test, public WithParamInterface<T> {
// usually want the fail-fast behavior of FAIL and ASSERT_*, but those
// writing data-driven tests often find themselves using ADD_FAILURE
// and EXPECT_* more.
-//
-// Examples:
-//
-// EXPECT_TRUE(server.StatusIsOK());
-// ASSERT_FALSE(server.HasPendingRequest(port))
-// << "There are still pending requests " << "on port " << port;
// Generates a nonfatal failure with a generic message.
#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")