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

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

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

namespace network {

namespace {

constexpr auto kNone =;
constexpr auto kIsolateAndCredentialless =;
constexpr auto kIsolateAndRequireCorp =;
const auto kNoHeader =;
const auto kNoEndpoint =;

struct TestCase {};

void CheckTestCase(const TestCase& test_case) {}

}  // namespace

TEST(DocumentIsolationPolicyTest, Parse) {}

}  // namespace network