zephyr/tests/ztest/base/src/main.cpp
Yuval Peress d813e9b39f ztest: Fix incorrect use of this as fixture
Update `this` to `fixture` to avoid C++ keyword error.

Fixes #46459

Signed-off-by: Yuval Peress <peress@google.com>
2022-06-16 16:13:18 -04:00

32 lines
482 B
C++

/*
* Copyright (c) 2022 Google Inc
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <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, NULL);
}