zephyr/tests/ztest/base/src/main.cpp
Michał Barnaś dae8efa692 ztest: remove the obsolete NULL appended to zassert macros
This commit removes the usage of NULL parameter as message in
zassert_* macros after making it optional

Signed-off-by: Michał Barnaś <mb@semihalf.com>
2022-09-09 07:05:38 -04:00

32 lines
483 B
C++

/*
* Copyright (c) 2022 Google Inc
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/ztest.h>
struct cpp_fixture {
int x;
};
void *cpp_setup(void)
{
auto fixture = new struct cpp_fixture;
fixture->x = 5;
return fixture;
}
void cpp_teardown(void *fixture)
{
delete static_cast<struct cpp_fixture *>(fixture);
}
ZTEST_SUITE(cpp, NULL, cpp_setup, NULL, NULL, cpp_teardown);
ZTEST_F(cpp, test_fixture_created_and_initialized)
{
zassert_equal(5, fixture->x);
}