danzh | c3be2d4 | 2019-04-25 07:47:41 -0700 | [diff] [blame] | 1 | // 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 | |
vasilvv | 9eec216 | 2020-12-30 13:49:28 -0800 | [diff] [blame] | 8 | #include "net/quiche/common/platform/impl/quiche_test_impl.h" |
danzh | c3be2d4 | 2019-04-25 07:47:41 -0700 | [diff] [blame] | 9 | |
QUICHE team | f3c80c9 | 2020-02-12 09:47:55 -0800 | [diff] [blame] | 10 | using QuicheTest = quiche::test::QuicheTest; |
| 11 | |
dmcardle | 8f7df53 | 2020-01-07 13:28:57 -0800 | [diff] [blame] | 12 | template <class T> |
| 13 | using QuicheTestWithParam = quiche::test::QuicheTestWithParamImpl<T>; |
| 14 | |
bnc | 08fc2ae | 2021-04-27 14:57:51 -0700 | [diff] [blame] | 15 | #define EXPECT_QUICHE_DEBUG_DEATH(condition, message) \ |
| 16 | EXPECT_QUICHE_DEBUG_DEATH_IMPL(condition, message) |
| 17 | |
danzh | c3be2d4 | 2019-04-25 07:47:41 -0700 | [diff] [blame] | 18 | #endif // QUICHE_COMMON_PLATFORM_API_QUICHE_TEST_H_ |