chromium/extensions/browser/extension_function_crash_keys_unittest.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "extensions/browser/extension_function_crash_keys.h"
#include "components/crash/core/common/crash_buildflags.h"
#include "components/crash/core/common/crash_key.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace extensions {

GetCrashKeyValue;

// The crash key stub implementation does not store keys so we cannot test the
// value of a key.
#if !BUILDFLAG(USE_CRASH_KEY_STUBS)
class ExtensionFunctionCrashKeysTest : public testing::Test {};

TEST_F(ExtensionFunctionCrashKeysTest, SingleCall) {}

TEST_F(ExtensionFunctionCrashKeysTest, MultipleCalls) {}

TEST_F(ExtensionFunctionCrashKeysTest, MultipleExtensions) {}
#endif  // !BUILDFLAG(USE_CRASH_KEY_STUBS)

}  // namespace extensions