1 /* Copyright (c) 2022 Google LLC 2 * SPDX-License-Identifier: Apache-2.0 3 */ 4 5 #include <zephyr/ztest.h> 6 7 #include "fail_test.hpp" 8 fail_after(void *)9static void fail_after(void *) { 10 fail_test_after_impl(); 11 } 12 fail_teardown(void *)13static void fail_teardown(void *) { 14 fail_test_teardown_impl(); 15 } 16 17 ZTEST_SUITE(fail, nullptr, nullptr, nullptr, fail_after, fail_teardown); 18 ZTEST(fail,test_framework)19ZTEST(fail, test_framework) {} 20