Google Cloud Pub/Sub C++ Client 2.13.0
A C++ Client Library for Google Cloud Pub/Sub
Loading...
Searching...
No Matches
mock_subscriber_connection.h
1// Copyright 2020 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_PUBSUB_MOCKS_MOCK_SUBSCRIBER_CONNECTION_H
16#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_PUBSUB_MOCKS_MOCK_SUBSCRIBER_CONNECTION_H
17
18#include "google/cloud/pubsub/subscriber_connection.h"
19#include <gmock/gmock.h>
20
21namespace google {
22namespace cloud {
23namespace pubsub_mocks {
24GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
25
26/**
27 * A googlemock-based mock for [pubsub::SubscriberConnection][mocked-link]
28 *
29 * [mocked-link]: @ref google::cloud::pubsub::SubscriberConnection
30 *
31 * @see @ref subscriber-mock for an example using this class.
32 */
34 public:
35 MOCK_METHOD(future<Status>, Subscribe,
37 MOCK_METHOD(future<Status>, ExactlyOnceSubscribe,
39 (override));
40 MOCK_METHOD(google::cloud::Options, options, (), (override));
41};
42
43GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
44} // namespace pubsub_mocks
45} // namespace cloud
46} // namespace google
47
48#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_PUBSUB_MOCKS_MOCK_SUBSCRIBER_CONNECTION_H
friend friend class future
A connection to the Cloud Pub/Sub service to receive events.
Definition: subscriber_connection.h:57
A googlemock-based mock for pubsub::SubscriberConnection.
Definition: mock_subscriber_connection.h:33
A namespace for googlemock-based Cloud Pub/Sub C++ client mocks.
Definition: mock_ack_handler.h:25
Contains all the Cloud Pub/Sub C++ client types and functions.
Definition: ack_handler.h:25
The namespace Google Cloud Platform C++ client libraries.
Wrap the arguments for Subscribe()
Definition: subscriber_connection.h:62