chromium/content/browser/webui/web_ui_unittest.cc

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

#include <utility>

#include "content/public/test/test_web_ui.h"
#include "testing/gtest/include/gtest/gtest.h"

class WebUITest : public testing::Test {};

namespace {

void HandleTestMessage(int number, bool conditional, const std::string& text) {}

}  // namespace

TEST_F(WebUITest, TestHandler) {}