blob: ae1a5ee405595477fb144fc22593bdf75b219978 [file] [log] [blame]
#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 "common/platform/api/quiche_test.h"
#include "common/platform/api/quiche_test_helpers.h"
#define VERIFY_AND_RETURN_SUCCESS(expression) \
{ \
VERIFY_SUCCESS(expression); \
return ::testing::AssertionSuccess(); \
}
#endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_TEST_HELPERS_H_