chromium/net/third_party/quiche/src/quiche/common/platform/api/quiche_test.h

// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef QUICHE_COMMON_PLATFORM_API_QUICHE_TEST_H_
#define QUICHE_COMMON_PLATFORM_API_QUICHE_TEST_H_

#include "quiche_platform_impl/quiche_test_impl.h"  // IWYU pragma: export

namespace quiche::test {

QuicheTest;

QuicheTestWithParam;

QuicheFlagSaver;

QuicheScopedDisableExitOnDFatal;

// Class which needs to be instantiated in tests which use threads.
ScopedEnvironmentForThreads;

inline std::string QuicheGetTestMemoryCachePath() {}

// Returns the path to quiche/common directory where the test data could be
// located.
inline std::string QuicheGetCommonSourcePath() {}

}  // namespace quiche::test

#define EXPECT_QUICHE_DEBUG_DEATH(condition, message)

#define EXPECT_QUICHE_DEATH(condition, message)

#define QUICHE_TEST_DISABLED_IN_CHROME(name)

#define QUICHE_SLOW_TEST(test)

#endif  // QUICHE_COMMON_PLATFORM_API_QUICHE_TEST_H_