RKH
test_utrzignore_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 francuccilea@gmail.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(utrzIgnore)
33 {
34  RUN_TEST_CASE(utrzIgnore, sm_trn_Ok);
35  RUN_TEST_CASE(utrzIgnore, sm_trn_OneArg);
36  RUN_TEST_CASE(utrzIgnore, sm_trn_OneArgBeforeExpect);
37  RUN_TEST_CASE(utrzIgnore, sm_exeAct_Ok);
38  RUN_TEST_CASE(utrzIgnore, sm_exeAct_OneArg);
39  RUN_TEST_CASE(utrzIgnore, sm_exeAct_OneArgBeforeExpect);
40  RUN_TEST_CASE(utrzIgnore, ignoreAnEventOfIgnoredGroup);
41  RUN_TEST_CASE(utrzIgnore, ignoreAnOutOfRangeGroup);
42  RUN_TEST_CASE(utrzIgnore, ignoreAnOutOfRangeEvent);
43  RUN_TEST_CASE(utrzIgnore, verifyFail);
44 }
45 
46 /* ------------------------------ End of file ------------------------------ */