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, NULL, NULL, NULL, NULL, NULL); 17 ZTEST(test_bluetooth,test_ctrl_sw_privacy)18ZTEST(test_bluetooth, test_ctrl_sw_privacy) 19 { 20 zassert_false(bt_enable(NULL), "%s failed", __func__); 21 } 22