32 lines
536 B
C
32 lines
536 B
C
|
/* Copyright (c) 2023 Nordic Semiconductor ASA
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <bs_tracing.h>
|
||
|
#include <bs_types.h>
|
||
|
#include <bstests.h>
|
||
|
|
||
|
void the_test(void);
|
||
|
|
||
|
static const struct bst_test_instance test_to_add[] = {
|
||
|
{
|
||
|
.test_id = "the_test",
|
||
|
.test_main_f = the_test,
|
||
|
},
|
||
|
BSTEST_END_MARKER,
|
||
|
};
|
||
|
|
||
|
static struct bst_test_list *install(struct bst_test_list *tests)
|
||
|
{
|
||
|
return bst_add_tests(tests, test_to_add);
|
||
|
};
|
||
|
|
||
|
bst_test_install_t test_installers[] = {install, NULL};
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
bst_main();
|
||
|
|
||
|
return 0;
|
||
|
}
|