chromium/content/browser/loader/cors_origin_pattern_setter_unittest.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 "content/public/browser/cors_origin_pattern_setter.h"

#include <string>
#include <vector>

#include "base/run_loop.h"
#include "content/public/browser/shared_cors_origin_access_list.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "mojo/public/cpp/bindings/clone_traits.h"
#include "services/network/public/cpp/cors/origin_access_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
#include "url/origin.h"

namespace content {

namespace {

network::mojom::CorsOriginPatternPtr CreateTestPattern(
    std::string target_domain) {}

}  // namespace

TEST(CorsOriginPatternSetter, InitialEmptyList) {}

TEST(CorsOriginPatternSetter, ClonePatterns) {}

TEST(CorsOriginPatternSetter, Set) {}

}  // namespace content