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