1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 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 * http://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 16 #ifndef OHOS_MOCK_IDISTRIBUTED_HARDWARE_SOURCE_H 17 #define OHOS_MOCK_IDISTRIBUTED_HARDWARE_SOURCE_H 18 19 #include <string> 20 21 #include "gmock/gmock.h" 22 23 #include "idistributed_hardware_source.h" 24 namespace OHOS { 25 namespace DistributedHardware { 26 class MockIDistributedHardwareSource : public IDistributedHardwareSource { 27 public: ~MockIDistributedHardwareSource()28 virtual ~MockIDistributedHardwareSource() {} 29 MOCK_METHOD1(InitSource, int32_t(const std::string ¶ms)); 30 MOCK_METHOD0(ReleaseSource, int32_t()); 31 MOCK_METHOD4(RegisterDistributedHardware, int32_t(const std::string &uuid, const std::string &dhId, 32 const EnableParam ¶meters, std::shared_ptr<RegisterCallback> callback)); 33 MOCK_METHOD3(UnregisterDistributedHardware, 34 int32_t(const std::string &uuid, const std::string &dhId, std::shared_ptr<UnregisterCallback> callback)); 35 ConfigDistributedHardware(const std::string & uuid,const std::string & dhId,const std::string & key,const std::string & value)36 int32_t ConfigDistributedHardware(const std::string &uuid, const std::string &dhId, const std::string &key, 37 const std::string &value) 38 { 39 return 0; 40 } 41 }; 42 } 43 } 44 #endif