chromium/third_party/openscreen/src/cast/streaming/testing/message_pipe.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// The testing message pipe is intended to be used for integrating
// sender and receiver sessions (or other consumers of MessagePort).

#ifndef CAST_STREAMING_TESTING_MESSAGE_PIPE_H_
#define CAST_STREAMING_TESTING_MESSAGE_PIPE_H_

#include <string>
#include <utility>
#include <vector>

#include "cast/common/public/message_port.h"
#include "cast/streaming/message_fields.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

namespace openscreen::cast {

class MessagePipeEnd : public MessagePort {};

class MessagePipe {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_TESTING_MESSAGE_PIPE_H_