blob: fb0f93d898016baabb10a4c87fb387659c850f35 [file] [log] [blame]
/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/fff.h>
#include <stdint.h>
#include <stdbool.h>
#include <zephyr/kernel.h>
/* List of fakes used by this unit tester */
#define ASSERT_FFF_FAKES_LIST(FAKE) \
FAKE(mock_check_if_assert_expected) \
DECLARE_FAKE_VALUE_FUNC(bool, mock_check_if_assert_expected);
#define expect_assert() (mock_check_if_assert_expected_fake.return_val = 1)