mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
16 lines
652 B
C++
16 lines
652 B
C++
|
|
/** @file
|
||
|
|
Google Test mocks for SecurityManagementLib
|
||
|
|
|
||
|
|
Copyright (c) 2025, Yandex. All rights reserved.
|
||
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
**/
|
||
|
|
|
||
|
|
#include <GoogleTest/Library/MockSecurityManagementLib.h>
|
||
|
|
|
||
|
|
MOCK_INTERFACE_DEFINITION (MockSecurityManagementLib);
|
||
|
|
|
||
|
|
MOCK_FUNCTION_DEFINITION (MockSecurityManagementLib, RegisterSecurityHandler, 2, EFIAPI);
|
||
|
|
MOCK_FUNCTION_DEFINITION (MockSecurityManagementLib, ExecuteSecurityHandlers, 2, EFIAPI);
|
||
|
|
MOCK_FUNCTION_DEFINITION (MockSecurityManagementLib, RegisterSecurity2Handler, 2, EFIAPI);
|
||
|
|
MOCK_FUNCTION_DEFINITION (MockSecurityManagementLib, ExecuteSecurity2Handlers, 6, EFIAPI);
|