1 /*
2  * Copyright (c) 2024 Demant A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include "bstests.h"
8 
9 extern struct bst_test_list *test_bas_central_install(struct bst_test_list *tests);
10 extern struct bst_test_list *test_bas_peripheral_install(struct bst_test_list *tests);
11 
12 bst_test_install_t test_installers[] = {
13 	test_bas_central_install,
14 	test_bas_peripheral_install,
15 	NULL,
16 };
17 
main(void)18 int main(void)
19 {
20 	bst_main();
21 	return 0;
22 }
23