1 /*
2  * Copyright (c) 2022 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/fff.h>
8 #include <zephyr/kernel.h>
9 
10 /* List of fakes used by this unit tester */
11 #define HCI_CORE_FFF_FAKES_LIST(FAKE)                                                              \
12 	FAKE(bt_hci_cmd_create)                                                                    \
13 	FAKE(bt_hci_cmd_send_sync)
14 
15 DECLARE_FAKE_VALUE_FUNC(struct net_buf *, bt_hci_cmd_create, uint16_t, uint8_t);
16 DECLARE_FAKE_VALUE_FUNC(int, bt_hci_cmd_send_sync, uint16_t, struct net_buf *, struct net_buf **);
17