zephyr/tests/bluetooth/host/id/mocks/kernel_expects.h
Ahmed Moheb abb7e8bfc2 tests: bluetooth: host: Add UT for bt_id_init()
Unit test project for bt_id_init().
This part of subsys/bluetooth/host/id.c unit testing.

Signed-off-by: Ahmed Moheb <ahmed.moheb@nordicsemi.no>
2023-01-17 13:13:28 +01:00

16 lines
382 B
C

/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
/*
* Validate expected behaviour when k_work_init_delayable() is called
*
* Expected behaviour:
* - k_work_init_delayable() to be called once with correct parameters
*/
void expect_single_call_k_work_init_delayable(struct k_work_delayable *dwork);