chromium/remoting/protocol/sdp_message_unittest.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "remoting/protocol/sdp_message.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace remoting::protocol {

// Verify that SDP is normalized by removing empty lines and normalizing
// line-endings to \r\n.
TEST(SdpMessages, Normalize) {}

// Verify that the normalized form of SDP for signature calculation has
// line-endings of \n, for compatibility with existing clients.
TEST(SdpMessages, NormalizedForSignature) {}

TEST(SdpMessages, AddCodecParameter) {}

TEST(SdpMessages, AddCodecParameterMissingCodec) {}

TEST(SdpMessages, AddCodecParameter_MultipleTypes) {}

TEST(SdpMessages, PreferVideoCodec_SdpIsUnchanged) {}

TEST(SdpMessages, PreferVideoCodec_MoveToTheStartOfTheList) {}

TEST(SdpMessages, PreferVideoCodec_UnknownCodec) {}

TEST(SdpMessages, PreferVideoCodec_MultiplePlayloads) {}

}  // namespace remoting::protocol