Google Cloud Pub/Sub C++ Client 2.13.0
A C++ Client Library for Google Cloud Pub/Sub
Loading...
Searching...
No Matches
mock_publisher_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_PUBLISHER_CONNECTION_H
16#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_PUBSUB_MOCKS_MOCK_PUBLISHER_CONNECTION_H
17
18#include "google/cloud/pubsub/publisher_connection.h"
19#include <gmock/gmock.h>
20#include <string>
21
22namespace google {
23namespace cloud {
24namespace pubsub_mocks {
25GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
26
27/**
28 * A googlemock-based mock for [pubsub::PublisherConnection][mocked-link]
29 *
30 * [mocked-link]: @ref google::cloud::pubsub::PublisherConnection
31 *
32 * @see @ref publisher-mock for an example using this class.
33 */
35 public:
36 MOCK_METHOD(future<StatusOr<std::string>>, Publish,
38 MOCK_METHOD(void, Flush, (pubsub::PublisherConnection::FlushParams),
39 (override));
40 MOCK_METHOD(void, ResumePublish,
42};
43
44GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
45} // namespace pubsub_mocks
46} // namespace cloud
47} // namespace google
48
49#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_PUBSUB_MOCKS_MOCK_PUBLISHER_CONNECTION_H
friend friend class future
A connection to the Cloud Pub/Sub service to publish events.
Definition: publisher_connection.h:56
A googlemock-based mock for pubsub::PublisherConnection.
Definition: mock_publisher_connection.h:34
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 Flush()
Definition: publisher_connection.h:66
Wrap the arguments for Publish()
Definition: publisher_connection.h:61
Wrap the arguments for ResumePublish()
Definition: publisher_connection.h:69