1 /* 2 * Copyright (c) 2021 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/ztest.h> 8 ZTEST(suite1,test_foo)9ZTEST(suite1, test_foo) 10 { 11 ztest_test_pass(); 12 } 13 ZTEST(suite2,test_foo)14ZTEST(suite2, test_foo) 15 { 16 ztest_test_skip(); 17 } 18 19 ZTEST_SUITE(suite1, NULL, NULL, NULL, NULL, NULL); 20 ZTEST_SUITE(suite2, NULL, NULL, NULL, NULL, NULL); 21