RKH
test_utrzexpect_runner.c
Go to the documentation of this file.
1 
8 /* -------------------------- Development history -------------------------- */
9 /*
10  * 2015.11.11 LeFr v1.0.00 Initial version
11  */
12 
13 /* -------------------------------- Authors -------------------------------- */
14 /*
15  * LeFr Leandro Francucci lf@vortexmakes.com
16  */
17 
18 /* --------------------------------- Notes --------------------------------- */
19 /* ----------------------------- Include files ----------------------------- */
20 
21 #include "unity_fixture.h"
22 
23 /* ----------------------------- Local macros ------------------------------ */
24 /* ------------------------------- Constants ------------------------------- */
25 /* ---------------------------- Local data types --------------------------- */
26 /* ---------------------------- Global variables --------------------------- */
27 /* ---------------------------- Local variables ---------------------------- */
28 /* ----------------------- Local function prototypes ----------------------- */
29 /* ---------------------------- Local functions ---------------------------- */
30 /* ---------------------------- Global functions --------------------------- */
31 
32 TEST_GROUP_RUNNER(utrzExpect)
33 {
34  RUN_TEST_CASE(utrzExpect, sm_init_Ok);
35  RUN_TEST_CASE(utrzExpect, sm_init_OutOfSequence);
36  RUN_TEST_CASE(utrzExpect, sm_init_WithUnexpectedArg);
37  RUN_TEST_CASE(utrzExpect, sm_clrh_Ok);
38  RUN_TEST_CASE(utrzExpect, sm_clrh_OutOfSequence);
39  RUN_TEST_CASE(utrzExpect, sm_clrh_WithUnexpectedArg);
40  RUN_TEST_CASE(utrzExpect, sm_trn_Ok);
41  RUN_TEST_CASE(utrzExpect, sm_trn_OutOfSequence);
42  RUN_TEST_CASE(utrzExpect, sm_trn_WithUnexpectedArg);
43  RUN_TEST_CASE(utrzExpect, sm_trn_WithAnyArgs);
44  RUN_TEST_CASE(utrzExpect, sm_state_Ok);
45  RUN_TEST_CASE(utrzExpect, sm_state_OutOfSequence);
46  RUN_TEST_CASE(utrzExpect, sm_state_WithUnexpectedArg);
47  RUN_TEST_CASE(utrzExpect, sm_enstate_Ok);
48  RUN_TEST_CASE(utrzExpect, sm_enstate_OutOfSequence);
49  RUN_TEST_CASE(utrzExpect, sm_enstate_WithUnexpectedArg);
50  RUN_TEST_CASE(utrzExpect, sm_exstate_Ok);
51  RUN_TEST_CASE(utrzExpect, sm_exstate_OutOfSequence);
52  RUN_TEST_CASE(utrzExpect, sm_exstate_WithUnexpectedArg);
53  RUN_TEST_CASE(utrzExpect, sm_nenex_Ok);
54  RUN_TEST_CASE(utrzExpect, sm_nenex_OutOfSequence);
55  RUN_TEST_CASE(utrzExpect, sm_nenex_WithUnexpectedArg);
56  RUN_TEST_CASE(utrzExpect, sm_ntrnact_Ok);
57  RUN_TEST_CASE(utrzExpect, sm_ntrnact_OutOfSequence);
58  RUN_TEST_CASE(utrzExpect, sm_ntrnact_WithUnexpectedArg);
59  RUN_TEST_CASE(utrzExpect, sm_tsstate_Ok);
60  RUN_TEST_CASE(utrzExpect, sm_tsstate_OutOfSequence);
61  RUN_TEST_CASE(utrzExpect, sm_tsstate_WithUnexpectedArg);
62  RUN_TEST_CASE(utrzExpect, sm_evtproc_Ok);
63  RUN_TEST_CASE(utrzExpect, sm_evtproc_OutOfSequence);
64  RUN_TEST_CASE(utrzExpect, sm_evtnfound_Ok);
65  RUN_TEST_CASE(utrzExpect, sm_evtnfound_OutOfSequence);
66  RUN_TEST_CASE(utrzExpect, sm_evtnfound_WithUnexpectedArg);
67  RUN_TEST_CASE(utrzExpect, sm_grdfalse_Ok);
68  RUN_TEST_CASE(utrzExpect, sm_grdfalse_OutOfSequence);
69  RUN_TEST_CASE(utrzExpect, sm_cndnfound_Ok);
70  RUN_TEST_CASE(utrzExpect, sm_cndnfound_OutOfSequence);
71  RUN_TEST_CASE(utrzExpect, sm_unkstate_Ok);
72  RUN_TEST_CASE(utrzExpect, sm_unkstate_OutOfSequence);
73  RUN_TEST_CASE(utrzExpect, sm_exhlevel_Ok);
74  RUN_TEST_CASE(utrzExpect, sm_exhlevel_OutOfSequence);
75  RUN_TEST_CASE(utrzExpect, sm_extseg_Ok);
76  RUN_TEST_CASE(utrzExpect, sm_extseg_OutOfSequence);
77  RUN_TEST_CASE(utrzExpect, sm_exeAct_Ok);
78  RUN_TEST_CASE(utrzExpect, sm_exeAct_OutOfSequence);
79  RUN_TEST_CASE(utrzExpect, sm_exeAct_WithUnexpectedArg);
80  RUN_TEST_CASE(utrzExpect, sm_exeAct_WithAnyArgs);
81 }
82 
83 /* ------------------------------ End of file ------------------------------ */