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 SCAN_FFF_FAKES_LIST(FAKE) FAKE(bt_le_scan_set_enable) 12 13 DECLARE_FAKE_VALUE_FUNC(int, bt_le_scan_set_enable, uint8_t); 14 DECLARE_FAKE_VALUE_FUNC(bool, bt_le_scan_active_scanner_running); 15