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