1 /*
2 * Copyright (c) 2023 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7 #include "iut.h"
8
test_example_1(int argc,char ** argv)9 static int test_example_1(int argc, char **argv)
10 {
11 iut_case_print("argc=%d\n", argc);
12 for (int i = 0; i < argc; i++)
13 iut_case_print("argv=\"%s\"\n", argv[i]);
14
15 TEST_ASSERT_TRUE(1);
16
17 return IUT_ERR_OK;
18 }
19 DEFINE_IUT_CASE(example_1, examples, IUT_ATTRI_AUTORUN);
20
test_example_2(int argc,char ** argv)21 static int test_example_2(int argc, char **argv)
22 {
23 iut_case_print("argc=%d\n", argc);
24 for (int i = 0; i < argc; i++)
25 iut_case_print("argv=\"%s\"\n", argv[i]);
26
27 TEST_ASSERT_TRUE(0);
28 TEST_ASSERT_TRUE(1);
29
30 return IUT_ERR_OK;
31 }
32 DEFINE_IUT_CASE(example_2, examples, IUT_ATTRI_AUTORUN);
33