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