chromium/third_party/openscreen/src/cast/streaming/testing/mock_environment.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.

#ifndef CAST_STREAMING_TESTING_MOCK_ENVIRONMENT_H_
#define CAST_STREAMING_TESTING_MOCK_ENVIRONMENT_H_

#include "cast/streaming/public/environment.h"
#include "gmock/gmock.h"

namespace openscreen::cast {

// An Environment that can intercept all packet sends, for unit testing.
class MockEnvironment : public Environment {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_TESTING_MOCK_ENVIRONMENT_H_