packages/services/Car/cpp/evs/manager/1.1/test/unit/MockEvsDisplay.h

61 lines
3.0 KiB
C++

/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef CPP_EVS_MANAGER_1_1_TEST_UNIT_MOCKEVSDISPLAY_H_
#define CPP_EVS_MANAGER_1_1_TEST_UNIT_MOCKEVSDISPLAY_H_
#include <android/hardware/automotive/evs/1.0/IEvsDisplay.h>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
namespace android::automotive::evs::V1_1::implementation {
class MockEvsDisplay_1_0 : public ::android::hardware::automotive::evs::V1_0::IEvsDisplay {
public:
virtual ~MockEvsDisplay_1_0() = default;
MOCK_METHOD(::android::hardware::Return<void>, getDisplayInfo, (getDisplayInfo_cb), (override));
MOCK_METHOD(::android::hardware::Return<::android::hardware::automotive::evs::V1_0::EvsResult>,
setDisplayState, (::android::hardware::automotive::evs::V1_0::DisplayState),
(override));
MOCK_METHOD(
::android::hardware::Return<::android::hardware::automotive::evs::V1_0::DisplayState>,
getDisplayState, (), (override));
MOCK_METHOD(::android::hardware::Return<void>, getTargetBuffer, (getTargetBuffer_cb),
(override));
MOCK_METHOD(::android::hardware::Return<::android::hardware::automotive::evs::V1_0::EvsResult>,
returnTargetBufferForDisplay,
(const ::android::hardware::automotive::evs::V1_0::BufferDesc&), (override));
MOCK_METHOD(::android::hardware::Return<void>, debug,
(const ::android::hardware::hidl_handle&,
const ::android::hardware::hidl_vec<::android::hardware::hidl_string>&),
(override));
MOCK_METHOD(::android::hardware::Return<void>, getHashChain, (getHashChain_cb), (override));
MOCK_METHOD(::android::hardware::Return<void>, setHALInstrumentation, (), (override));
MOCK_METHOD(::android::hardware::Return<bool>, linkToDeath,
(const ::android::sp<::android::hardware::hidl_death_recipient>&, uint64_t),
(override));
MOCK_METHOD(::android::hardware::Return<void>, ping, (), (override));
MOCK_METHOD(::android::hardware::Return<void>, getDebugInfo, (getDebugInfo_cb), (override));
MOCK_METHOD(::android::hardware::Return<void>, notifySyspropsChanged, (), (override));
MOCK_METHOD(::android::hardware::Return<bool>, unlinkToDeath,
(const ::android::sp<::android::hardware::hidl_death_recipient>&), (override));
};
} // namespace android::automotive::evs::V1_1::implementation
#endif // CPP_EVS_MANAGER_1_1_TEST_UNIT_MOCKEVSDISPLAY_H_