chromium/services/network/public/cpp/cross_origin_embedder_policy_parser_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 "services/network/public/cpp/cross_origin_embedder_policy_parser.h"

#include <optional>
#include <string>
#include <vector>

#include "net/http/http_response_headers.h"
#include "services/network/public/mojom/cross_origin_embedder_policy.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace network {

namespace {

constexpr auto kNone =;
constexpr auto kCredentialless =;
constexpr auto kRequireCorp =;
const auto kNoHeader =;
const auto kNoEndpoint =;

struct TestCase {};

void CheckTestCase(const TestCase& test_case) {}

}  // namespace

TEST(CrossOriginEmbedderPolicyTest, Parse) {}

}  // namespace network