1 /* main.c - Application main entry point */ 2 3 /* 4 * Copyright (c) 2015-2016 Intel Corporation 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 9 #include <zephyr/types.h> 10 #include <stddef.h> 11 #include <zephyr/sys/printk.h> 12 #include <zephyr/ztest.h> 13 14 #include <zephyr/bluetooth/bluetooth.h> 15 16 ZTEST_SUITE(test_bluetooth_init, NULL, NULL, NULL, NULL, NULL); 17 ZTEST(test_bluetooth_init,test_init)18ZTEST(test_bluetooth_init, test_init) 19 { 20 zassert_false(bt_enable(NULL), "Bluetooth init failed"); 21 } 22