blob: 1af25df1ea5b9adaaeb355637165f4b6813d1eb5 [file] [log] [blame]
danzhc3be2d42019-04-25 07:47:41 -07001// Copyright (c) 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef QUICHE_COMMON_PLATFORM_API_QUICHE_TEST_H_
6#define QUICHE_COMMON_PLATFORM_API_QUICHE_TEST_H_
7
vasilvv9eec2162020-12-30 13:49:28 -08008#include "net/quiche/common/platform/impl/quiche_test_impl.h"
danzhc3be2d42019-04-25 07:47:41 -07009
QUICHE teamf3c80c92020-02-12 09:47:55 -080010using QuicheTest = quiche::test::QuicheTest;
11
dmcardle8f7df532020-01-07 13:28:57 -080012template <class T>
13using QuicheTestWithParam = quiche::test::QuicheTestWithParamImpl<T>;
14
bnc08fc2ae2021-04-27 14:57:51 -070015#define EXPECT_QUICHE_DEBUG_DEATH(condition, message) \
16 EXPECT_QUICHE_DEBUG_DEATH_IMPL(condition, message)
17
danzhc3be2d42019-04-25 07:47:41 -070018#endif // QUICHE_COMMON_PLATFORM_API_QUICHE_TEST_H_