mirror of https://github.com/acidanthera/audk.git
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
/** @file
|
|
Google Test mocks for UefiRuntimeServicesTableLib
|
|
|
|
Copyright (c) 2022, Intel Corporation. All rights reserved.
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
#include <GoogleTest/Library/MockUefiRuntimeServicesTableLib.h>
|
|
|
|
MOCK_INTERFACE_DEFINITION(MockUefiRuntimeServicesTableLib);
|
|
|
|
MOCK_FUNCTION_DEFINITION(MockUefiRuntimeServicesTableLib, gRT_GetVariable, 5, EFIAPI);
|
|
MOCK_FUNCTION_DEFINITION(MockUefiRuntimeServicesTableLib, gRT_SetVariable, 5, EFIAPI);
|
|
|
|
static EFI_RUNTIME_SERVICES localRt = {
|
|
{0}, // EFI_TABLE_HEADER
|
|
|
|
NULL, // EFI_GET_TIME
|
|
NULL, // EFI_SET_TIME
|
|
NULL, // EFI_GET_WAKEUP_TIME
|
|
NULL, // EFI_SET_WAKEUP_TIME
|
|
|
|
NULL, // EFI_SET_VIRTUAL_ADDRESS_MAP
|
|
NULL, // EFI_CONVERT_POINTER
|
|
|
|
gRT_GetVariable, // EFI_GET_VARIABLE
|
|
NULL, // EFI_GET_NEXT_VARIABLE_NAME
|
|
gRT_SetVariable, // EFI_SET_VARIABLE
|
|
|
|
NULL, // EFI_GET_NEXT_HIGH_MONO_COUNT
|
|
NULL, // EFI_RESET_SYSTEM
|
|
|
|
NULL, // EFI_UPDATE_CAPSULE
|
|
NULL, // EFI_QUERY_CAPSULE_CAPABILITIES
|
|
|
|
NULL, // EFI_QUERY_VARIABLE_INFO
|
|
};
|
|
|
|
extern "C" {
|
|
EFI_RUNTIME_SERVICES* gRT = &localRt;
|
|
}
|