chromium/chrome/browser/ui/webui/support_tool/support_tool_ui_browsertest.cc

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

#include <string>

#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/ui/webui/support_tool/support_tool_ui.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace {

struct OpenSupportToolTestParam {};

const auto kParams =;

class SupportToolUIBrowserTest
    : public InProcessBrowserTest,
      public testing::WithParamInterface<OpenSupportToolTestParam> {};

}  // namespace

// Verifies that the WebUI page loads and the corresponding metrics are
// collected.
IN_PROC_BROWSER_TEST_P(SupportToolUIBrowserTest, OpenSupportToolWebUI) {}

INSTANTIATE_TEST_SUITE_P();