1 /* 2 * Copyright (c) 2023, Meta 3 * Copyright (c) 2024, Marvin Ouma <pancakesdeath@protonmail.com> 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8 #include <zephyr/ztest.h> 9 10 void test_env_before(void); 11 void test_env_after(void); 12 before(void * arg)13static void before(void *arg) 14 { 15 test_env_before(); 16 } 17 after(void * arg)18static void after(void *arg) 19 { 20 test_env_after(); 21 } 22 23 ZTEST_SUITE(posix_single_process, NULL, NULL, before, after, NULL); 24