// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/safe_browsing/extension_telemetry/extension_js_callstacks.h" #include "extensions/common/stack_frame.h" #include "testing/gtest/include/gtest/gtest.h" namespace safe_browsing { namespace { class ExtensionJSCallStacksTest : public ::testing::Test { … }; TEST_F(ExtensionJSCallStacksTest, StartsWithEmptyStore) { … } TEST_F(ExtensionJSCallStacksTest, AddsCallStacks) { … } TEST_F(ExtensionJSCallStacksTest, GetsCallStacks) { … } } // namespace } // namespace safe_browsing