Following the previous commit that introduce the settings API for the Bluetooth subsystem, some unit tests needed to be updated to use it. Signed-off-by: Théo Battrel <theo.battrel@nordicsemi.no>
15 lines
338 B
C
15 lines
338 B
C
/*
|
|
* Copyright (c) 2022 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "mocks/settings.h"
|
|
|
|
#include <zephyr/kernel.h>
|
|
|
|
DEFINE_FAKE_VOID_FUNC(bt_settings_store_id);
|
|
DEFINE_FAKE_VOID_FUNC(bt_settings_delete_id);
|
|
DEFINE_FAKE_VOID_FUNC(bt_settings_store_irk);
|
|
DEFINE_FAKE_VOID_FUNC(bt_settings_delete_irk);
|