chromium/third_party/blink/renderer/core/inspector/main_thread_debugger_test.cc

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

#include "third_party/blink/renderer/core/inspector/main_thread_debugger.h"

#include <memory>

#include "base/test/scoped_feature_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/execution_context/agent.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/page/page.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"

namespace blink {
class MainThreadDebuggerTest : public PageTestBase {};

TEST_F(MainThreadDebuggerTest, HitBreakPointDuringLifecycle) {}

class MainThreadDebuggerMultipleMainFramesTest
    : public MainThreadDebuggerTest,
      public testing::WithParamInterface<bool> {};

INSTANTIATE_TEST_SUITE_P();

TEST_P(MainThreadDebuggerMultipleMainFramesTest, Allow) {}

}  // namespace blink