Google Cloud Pub/Sub C++ Client 2.13.0
A C++ Client Library for Google Cloud Pub/Sub
Loading...
Searching...
No Matches
mock_blocking_publisher_connection.h
1// Copyright 2022 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_BLOCKING_PUBLISHER_CONNECTION_H
16#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_PUBSUB_MOCKS_MOCK_BLOCKING_PUBLISHER_CONNECTION_H
17
18#include "google/cloud/pubsub/blocking_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
29 * [pubsub::BlockingPublisherConnection][mocked-link]
30 *
31 * [mocked-link]: @ref google::cloud::pubsub::BlockingPublisherConnection
32 *
33 * @see @ref publisher-mock for an example using this class.
34 */
37 public:
38 MOCK_METHOD(StatusOr<std::string>, Publish,
40 MOCK_METHOD(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_BLOCKING_PUBLISHER_CONNECTION_H
A connection to the Cloud Pub/Sub service to publish events.
Definition: blocking_publisher_connection.h:56
A googlemock-based mock for pubsub::BlockingPublisherConnection.
Definition: mock_blocking_publisher_connection.h:36
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 Publish()
Definition: blocking_publisher_connection.h:61