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>
16 lines
382 B
C
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);
|