Resource Settings API C++ Client 2.13.0
A C++ Client Library for the Resource Settings API
Loading...
Searching...
No Matches
mock_resource_settings_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// Generated by the Codegen C++ plugin.
16// If you make any local changes, they will be lost.
17// source: google/cloud/resourcesettings/v1/resource_settings.proto
18
19#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_RESOURCESETTINGS_V1_MOCKS_MOCK_RESOURCE_SETTINGS_CONNECTION_H
20#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_RESOURCESETTINGS_V1_MOCKS_MOCK_RESOURCE_SETTINGS_CONNECTION_H
21
22#include "google/cloud/resourcesettings/v1/resource_settings_connection.h"
23#include <gmock/gmock.h>
24
25namespace google {
26namespace cloud {
28GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
29
30/**
31 * A class to mock `ResourceSettingsServiceConnection`.
32 *
33 * Application developers may want to test their code with simulated responses,
34 * including errors, from an object of type `ResourceSettingsServiceClient`. To
35 * do so, construct an object of type `ResourceSettingsServiceClient` with an
36 * instance of this class. Then use the Google Test framework functions to
37 * program the behavior of this mock.
38 *
39 * @see [This example][bq-mock] for how to test your application with GoogleTest.
40 * While the example showcases types from the BigQuery library, the underlying
41 * principles apply for any pair of `*Client` and `*Connection`.
42 *
43 * [bq-mock]: @cloud_cpp_docs_link{bigquery,bigquery-read-mock}
44 */
47 public:
48 MOCK_METHOD(Options, options, (), (override));
49
50 MOCK_METHOD(
51 StreamRange<google::cloud::resourcesettings::v1::Setting>, ListSettings,
52 (google::cloud::resourcesettings::v1::ListSettingsRequest request),
53 (override));
54
55 MOCK_METHOD(
56 StatusOr<google::cloud::resourcesettings::v1::Setting>, GetSetting,
57 (google::cloud::resourcesettings::v1::GetSettingRequest const& request),
58 (override));
59
60 MOCK_METHOD(StatusOr<google::cloud::resourcesettings::v1::Setting>,
61 UpdateSetting,
62 (google::cloud::resourcesettings::v1::UpdateSettingRequest const&
63 request),
64 (override));
65};
66
67GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
68} // namespace resourcesettings_v1_mocks
69} // namespace cloud
70} // namespace google
71
72#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_RESOURCESETTINGS_V1_MOCKS_MOCK_RESOURCE_SETTINGS_CONNECTION_H
The ResourceSettingsServiceConnection object for ResourceSettingsServiceClient.
Definition: resource_settings_connection.h:63
A class to mock ResourceSettingsServiceConnection.
Definition: mock_resource_settings_connection.h:46
Definition: mock_resource_settings_connection.h:27
Definition: resource_settings_client.h:32
Definition: resource_settings_client.h:30