blob: 28689aaf17e389c3ad5da985d1757213d71e5776 [file] [log] [blame]
/*
* Copyright (c) 2018 Oticon A/S
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "bstests.h"
extern struct bst_test_list *test_empty_install(struct bst_test_list *tests);
extern struct bst_test_list *test_connect1_install(struct bst_test_list *tests);
extern struct bst_test_list *test_connect2_install(struct bst_test_list *tests);
bst_test_install_t test_installers[] = {
test_empty_install,
test_connect1_install,
test_connect2_install,
NULL
};
void main(void)
{
bst_main();
}