chromium/chrome/common/webui_util_unittest.cc

// 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/common/webui_util.h"

#include "base/strings/strcat.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/common/chrome_features.h"
#include "content/public/common/content_features.h"
#include "content/public/test/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace {
constexpr char kResource1[] =;
constexpr char kResource2[] =;
constexpr char kResource3[] =;
}  // namespace

class WebUIUtilTest : public ::testing::Test,
                      public ::testing::WithParamInterface<bool> {};

TEST_P(WebUIUtilTest, ShouldUseCodeCacheForWebUIUrl) {}

INSTANTIATE_TEST_SUITE_P();