summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h')
-rw-r--r--chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h b/chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h
deleted file mode 100644
index ccd3e724bd2..00000000000
--- a/chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef QUICHE_HTTP2_PLATFORM_API_HTTP2_TEST_HELPERS_H_
-#define QUICHE_HTTP2_PLATFORM_API_HTTP2_TEST_HELPERS_H_
-
-// Provides VERIFY_* macros, similar to EXPECT_* and ASSERT_*, but they return
-// an AssertionResult if the condition is not satisfied.
-#include "net/http2/platform/impl/http2_test_helpers_impl.h"
-
-#include "common/platform/api/quiche_test.h"
-
-#define VERIFY_AND_RETURN_SUCCESS(expression) \
- { \
- VERIFY_SUCCESS(expression); \
- return ::testing::AssertionSuccess(); \
- }
-
-#endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_TEST_HELPERS_H_