zephyr/tests/bluetooth/host/crypto/mocks/kernel.h
Ahmed Moheb b86150ff0c tests: bluetooth: host: Add mocks for crypto.c
Add required mocks to be able to compile/test /bluetooth/host/crypto.c

Signed-off-by: Ahmed Moheb <ahmed.moheb@nordicsemi.no>
2022-11-24 10:06:05 +01:00

15 lines
331 B
C

/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <zephyr/fff.h>
/* List of fakes used by this unit tester */
#define KERNEL_FFF_FAKES_LIST(FAKE) \
FAKE(k_uptime_ticks) \
DECLARE_FAKE_VALUE_FUNC(int64_t, k_uptime_ticks);