RKH
test_utrzsm_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(utrzsm)
33 {
34  RUN_TEST_CASE(utrzsm, expectEventOk);
35  RUN_TEST_CASE(utrzsm, expectEventOutOfSequence);
36  RUN_TEST_CASE(utrzsm, expectEventWithUnexpectedArg);
37  RUN_TEST_CASE(utrzsm, ignoreEvt);
38  RUN_TEST_CASE(utrzsm, ignoreOneArg);
39  RUN_TEST_CASE(utrzsm, ignoreOneArgBeforeExpect);
40  RUN_TEST_CASE(utrzsm, eventMoreThanExpect);
41 }
42 
43 /* ------------------------------ End of file ------------------------------ */