blob: 5776f83a464cbaa377f5dddb5e6c2eaba7c525e4 [file] [log] [blame]
/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "host_mocks/assert.h"
#include <zephyr/bluetooth/bluetooth.h>
#include <zephyr/kernel.h>
#include <host/keys.h>
ZTEST_SUITE(bt_keys_update_usage_invalid_inputs, NULL, NULL, NULL, NULL, NULL);
/*
* Test function with NULL address
*
* Constraints:
* - Any ID value can be used
* - Address is passed as NULL
*
* Expected behaviour:
* - An assertion fails and execution stops
*/
ZTEST(bt_keys_update_usage_invalid_inputs, test_null_device_address)
{
expect_assert();
bt_keys_update_usage(0x00, NULL);
}