1 /* test_common.h */ 2 3 /* 4 * Copyright (c) 2024 Nordic Semiconductor ASA 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 9 #include <zephyr/bluetooth/audio/bap.h> 10 #include <zephyr/bluetooth/audio/bap_lc3_preset.h> 11 #include <zephyr/bluetooth/audio/cap.h> 12 #include <zephyr/bluetooth/conn.h> 13 14 void test_mocks_init(void); 15 void test_mocks_cleanup(void); 16 17 void test_conn_init(struct bt_conn *conn); 18 19 void test_unicast_set_state(struct bt_cap_stream *cap_stream, struct bt_conn *conn, 20 struct bt_bap_ep *ep, struct bt_bap_lc3_preset *preset, 21 enum bt_bap_ep_state state); 22