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 net_buf_unref() is called
11  *
12  *  Expected behaviour:
13  *   - net_buf_unref() to be called once with correct parameters
14  */
15 void expect_single_call_net_buf_unref(struct net_buf *buf);
16 
17 /*
18  *  Validate expected behaviour when net_buf_unref() isn't called
19  *
20  *  Expected behaviour:
21  *   - net_buf_unref() isn't called at all
22  */
23 void expect_not_called_net_buf_unref(void);
24 
25 /*
26  *  Validate expected behaviour when net_buf_simple_add() is called
27  *
28  *  Expected behaviour:
29  *   - net_buf_simple_add() to be called once with correct parameters
30  */
31 void expect_single_call_net_buf_simple_add(struct net_buf_simple *buf, size_t len);
32 
33 /*
34  *  Validate expected behaviour when net_buf_simple_add() isn't called
35  *
36  *  Expected behaviour:
37  *   - net_buf_simple_add() isn't called at all
38  */
39 void expect_not_called_net_buf_simple_add(void);
40