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_l2cap_ecred_install(struct bst_test_list *tests); 10 11 bst_test_install_t test_installers[] = { 12 test_main_l2cap_ecred_install, 13 NULL 14 }; 15 main(void)16int main(void) 17 { 18 bst_main(); 19 return 0; 20 } 21