// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/common/masque/connect_ip_datagram_payload.h" #include <memory> #include <string> #include "absl/strings/string_view.h" #include "quiche/common/platform/api/quiche_test.h" namespace quiche::test { namespace { TEST(ConnectIpDatagramPayloadTest, ParseIpPacket) { … } TEST(ConnectIpDatagramPayloadTest, SerializeIpPacket) { … } TEST(ConnectIpDatagramPayloadTest, ParseUnknownPacket) { … } TEST(ConnectIpDatagramPayloadTest, SerializeUnknownPacket) { … } } // namespace } // namespace quiche::test