blob: 99c863bc45e91f17894ed03b574e8a2b2342cc49 [file] [log] [blame]
/* main.c - Application main entry point */
/*
* Copyright (c) 2015-2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/types.h>
#include <stddef.h>
#include <misc/printk.h>
#include <ztest.h>
#include <bluetooth/bluetooth.h>
void test_init(void)
{
zassert_false(bt_enable(NULL), "Bluetooth init failed");
}
/*test case main entry*/
void test_main(void)
{
ztest_test_suite(test_bluetooth,
ztest_unit_test(test_init));
ztest_run_test_suite(test_bluetooth);
}