blob: fe77d9a89f0feb63931de158fbd28ebcd191fe68 [file] [log] [blame]
/*
* Copyright (c) 2021 Nordic Semiconductor
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "bstests.h"
#include "mesh_test.h"
extern struct bst_test_list *
test_transport_install(struct bst_test_list *tests);
struct bst_test_list *test_friendship_install(struct bst_test_list *tests);
struct bst_test_list *test_provision_install(struct bst_test_list *tests);
struct bst_test_list *test_beacon_install(struct bst_test_list *tests);
bst_test_install_t test_installers[] = {
test_transport_install,
test_friendship_install,
test_provision_install,
test_beacon_install,
NULL
};
void main(void)
{
bst_main();
}