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