1 /*
2  * Copyright (c) 2022 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/kernel.h>
8 
9 /*
10  *  Validate expected behaviour when bt_keys_find_irk() is called
11  *
12  *  Expected behaviour:
13  *   - bt_keys_find_irk() to be called once with correct parameters
14  */
15 void expect_single_call_bt_keys_find_irk(uint8_t id, const bt_addr_le_t *addr);
16 
17 /*
18  *  Validate expected behaviour when bt_keys_find_irk() isn't called
19  *
20  *  Expected behaviour:
21  *   - bt_keys_find_irk() isn't called at all
22  */
23 void expect_not_called_bt_keys_find_irk(void);
24 
25 /*
26  *  Validate expected behaviour when bt_keys_foreach_type() is called
27  *
28  *  Expected behaviour:
29  *   - bt_keys_foreach_type() to be called once with correct parameters
30  */
31 void expect_single_call_bt_keys_foreach_type(enum bt_keys_type type);
32 
33 /*
34  *  Validate expected behaviour when bt_keys_foreach_type() isn't called
35  *
36  *  Expected behaviour:
37  *   - bt_keys_foreach_type() isn't called at all
38  */
39 void expect_not_called_bt_keys_foreach_type(void);
40