chromium/components/supervised_user/core/browser/fetcher_config_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 "components/supervised_user/core/browser/fetcher_config.h"

#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace supervised_user {
namespace {

constexpr FetcherConfig kConfigWithStaticPath{};

constexpr FetcherConfig kConfigWithTemplatePath{};

constexpr FetcherConfig kConfigWithTemplateAndSeparators{};

TEST(FetcherConfigTest, StaticPathIsReturned) {}

TEST(FetcherConfigTest, StaticPathCrashesForNonEmptyArgs) {}

TEST(FetcherConfigTest, TemplatePathCrashesOnStaticPathAccess) {}

TEST(FetcherConfigTest, TemplatePathIsInterpolated) {}

TEST(FetcherConfigTest, TemplatePathWithSeparatorsIsInterpolated) {}

}  // namespace
}  // namespace supervised_user