#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) { … }
}
TEST(DocumentIsolationPolicyTest, Parse) { … }
}