blob: 8fad2258803a5d207bb2091249f8e78b7aea6dd5 [file] [log] [blame]
/*
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <stddef.h>
#include <ztest.h>
#include <bluetooth/bluetooth.h>
#include "bt_common.h"
void ut_bt_setup(void)
{
int err;
/* Initialize bluetooth subsystem */
err = bt_enable(NULL);
zassert_equal(err, 0, "Bluetooth subsystem initialization failed");
}