RKH
test_smPolymorphism_runner.c
Go to the documentation of this file.
1 /*
2  * --------------------------------------------------------------------------
3  *
4  * Framework RKH
5  * -------------
6  *
7  * State-machine framework for reactive embedded systems
8  *
9  * Copyright (C) 2010 Leandro Francucci.
10  * All rights reserved. Protected by international copyright laws.
11  *
12  *
13  * RKH is free software: you can redistribute it and/or modify it under the
14  * terms of the GNU General Public License as published by the Free Software
15  * Foundation, either version 3 of the License, or (at your option) any
16  * later version.
17  *
18  * RKH is distributed in the hope that it will be useful, but WITHOUT ANY
19  * WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
21  * more details.
22  *
23  * You should have received a copy of the GNU General Public License along
24  * with RKH, see copying.txt file.
25  *
26  * Contact information:
27  * RKH web site: http://sourceforge.net/projects/rkh-reactivesys/
28  * e-mail: francuccilea@gmail.com
29  * ---------------------------------------------------------------------------
30  */
31 
39 /* -------------------------- Development history -------------------------- */
40 /*
41  * 2016.12.15 LeFr v2.4.05 ---
42  */
43 
44 /* -------------------------------- Authors -------------------------------- */
45 /*
46  * LeFr Leandro Francucci francuccilea@gmail.com
47  */
48 
49 /* --------------------------------- Notes --------------------------------- */
50 /* ----------------------------- Include files ----------------------------- */
51 #include "unity_fixture.h"
52 
53 /* ----------------------------- Local macros ------------------------------ */
54 /* ------------------------------- Constants ------------------------------- */
55 /* ---------------------------- Local data types --------------------------- */
56 /* ---------------------------- Global variables --------------------------- */
57 /* ---------------------------- Local variables ---------------------------- */
58 /* ----------------------- Local function prototypes ----------------------- */
59 /* ---------------------------- Local functions ---------------------------- */
60 /* ---------------------------- Global functions --------------------------- */
61 TEST_GROUP_RUNNER(polymorphism)
62 {
63  RUN_TEST_CASE(polymorphism, defaultVirtualFunctions);
64  RUN_TEST_CASE(polymorphism, callVirtualFunction);
65  RUN_TEST_CASE(polymorphism, setVirtualTable);
66  RUN_TEST_CASE(polymorphism, runtimeSingletonAOCtor);
67  RUN_TEST_CASE(polymorphism, runtimeMultipleAOCtorWithVtblForObj);
68  RUN_TEST_CASE(polymorphism, runtimeMultipleAOCtorWithVtblForType);
69  RUN_TEST_CASE(polymorphism, runtimeSubObjectCtorOfSMAAndSM);
70  RUN_TEST_CASE(polymorphism, runtimeSubObjectCtorOfSMAAndSMWithDefaultVtbl);
71 }
72 
73 /* ------------------------------ End of file ------------------------------ */