blob: 79dcb6dbe972efe166f8bfbab0247c7c7c7531ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/** @file MockReportStatusCodeLib.h
Google Test mocks for ReportStatusCodeLib
Copyright (c) Microsoft Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef MOCK_REPORT_STATUS_CODE_LIB_H_
#define MOCK_REPORT_STATUS_CODE_LIB_H_
#include <Library/GoogleTestLib.h>
#include <Library/FunctionMockLib.h>
extern "C" {
#include <Uefi.h>
#include <Library/ReportStatusCodeLib.h>
}
struct MockReportStatusCodeLib {
MOCK_INTERFACE_DECLARATION (MockReportStatusCodeLib);
MOCK_FUNCTION_DECLARATION (
BOOLEAN,
ReportProgressCodeEnabled,
()
);
};
#endif //MOCK_REPORT_STATUS_CODE_LIB_H_
|