1 /* 2 * Copyright (c) 2020 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #include <zephyr/ztest.h> 7 8 ZTEST_SUITE(test_pytest, NULL, NULL, NULL, NULL, NULL); 9 ZTEST(test_pytest,test_pytest)10 ZTEST(test_pytest, test_pytest) 11 { 12 TC_PRINT("Hello world\n"); 13 } 14