The unittest for cap commander is refactored, so that tests for volumecontrol is in its own module. This avoids the problem of having all tests in one huge file. Due to their small size the tests for registering callbacks and discovery haven't been put into their own module. Signed-off-by: Andries Kruithof <andries.kruithof@nordicsemi.no>
13 lines
221 B
C
13 lines
221 B
C
/* test_common.h */
|
|
|
|
/*
|
|
* Copyright (c) 2024 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
void test_mocks_init(void);
|
|
void test_mocks_cleanup(void);
|
|
|
|
void test_conn_init(struct bt_conn *conn);
|