RKH
test_rkhtmr.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 
44 /* -------------------------- Development history -------------------------- */
45 /*
46  * 2017.17.05 LeFr v2.4.05 ---
47  */
48 
49 /* -------------------------------- Authors -------------------------------- */
50 /*
51  * LeFr Leandro Francucci francuccilea@gmail.com
52  */
53 
54 /* --------------------------------- Notes --------------------------------- */
55 /* ----------------------------- Include files ----------------------------- */
56 #include "unity_fixture.h"
57 #include "rkhtmr.h"
58 #include "Mock_rkhassert.h"
59 #include "Mock_rkhfwk_hook.h"
60 #include "Mock_rkhport.h"
61 #include "Mock_rkhsma.h"
62 #include "Mock_rkhtrc_record.h"
63 #include "Mock_rkhtrc_filter.h"
64 
65 /* ----------------------------- Local macros ------------------------------ */
66 /* ------------------------------- Constants ------------------------------- */
67 /* ---------------------------- Local data types --------------------------- */
68 /* ---------------------------- Global variables --------------------------- */
69 TEST_GROUP(timer);
70 
71 /* ---------------------------- Local variables ---------------------------- */
72 /* ----------------------- Local function prototypes ----------------------- */
73 /* ---------------------------- Local functions ---------------------------- */
74 /* ---------------------------- Global functions --------------------------- */
75 TEST_SETUP(timer)
76 {
77 }
78 
79 TEST_TEAR_DOWN(timer)
80 {
81 }
82 
89 TEST(timer, First)
90 {
91  TEST_IGNORE();
92 }
93 
98 /* ------------------------------ End of file ------------------------------ */
Specifies the interface of software timer services.