/* * 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 #include #include 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, 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, 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, debug, (const ::android::hardware::hidl_handle&, const ::android::hardware::hidl_vec<::android::hardware::hidl_string>&), (override)); MOCK_METHOD(::android::hardware::Return, getHashChain, (getHashChain_cb), (override)); MOCK_METHOD(::android::hardware::Return, setHALInstrumentation, (), (override)); MOCK_METHOD(::android::hardware::Return, linkToDeath, (const ::android::sp<::android::hardware::hidl_death_recipient>&, uint64_t), (override)); MOCK_METHOD(::android::hardware::Return, ping, (), (override)); MOCK_METHOD(::android::hardware::Return, getDebugInfo, (getDebugInfo_cb), (override)); MOCK_METHOD(::android::hardware::Return, notifySyspropsChanged, (), (override)); MOCK_METHOD(::android::hardware::Return, 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_