summaryrefslogtreecommitdiff
path: root/zephyr/test/ap_power/include/test_mocks.h
blob: 05e1d823e0c2e05d565866faf4ecadb057c98c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Copyright 2022 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef __TEST_AP_POWER_TEST_MOCKS_H
#define __TEST_AP_POWER_TEST_MOCKS_H

#include <stdint.h>

#include <zephyr/fff.h>

/*
 * Mock declarations
 */

/* Mocks for common/extpower_gpio.c */
DECLARE_FAKE_VALUE_FUNC(int, extpower_is_present);

/* Mocks for common/system.c */
DECLARE_FAKE_VOID_FUNC(system_hibernate, uint32_t, uint32_t);

#endif /* __TEST_AP_POWER_TEST_MOCKS_H */