chromium/content/browser/preloading/preloading_config_unittest.cc

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

#include "content/browser/preloading/preloading_config.h"

#include "base/test/scoped_feature_list.h"
#include "content/common/features.h"
#include "content/public/browser/preloading.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace content {
namespace {

class PreloadingConfigTest : public ::testing::Test {};

TEST_F(PreloadingConfigTest, EmptyConfig) {}

TEST_F(PreloadingConfigTest, NonJsonConfig) {}

TEST_F(PreloadingConfigTest, InvalidPreloadingType) {}

TEST_F(PreloadingConfigTest, InvalidPredictor) {}

TEST_F(PreloadingConfigTest, ValidConfig) {}

}  // namespace
}  // namespace content