FOSSology  3.2.0rc1
Open Source License Compliance by Open Source Software
testRun.h
1 /*********************************************************************
2 Copyright (C) 2011, 2012 Hewlett-Packard Development Company, L.P.
3 
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 version 2 as published by the Free Software Foundation.
7 
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12 
13 You should have received a copy of the GNU General Public License along
14 with this program; if not, write to the Free Software Foundation, Inc.,
15 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 *********************************************************************/
17 
18 #pragma once
19 
20 /* local includes */
21 #include <agent.h>
22 #include <database.h>
23 #include <event.h>
24 #include <host.h>
25 #include <interface.h>
26 #include <job.h>
27 #include <logging.h>
28 #include <scheduler.h>
29 
30 /* libraries */
31 #include <libfocunit.h>
32 #include <glib.h>
33 
34 /* suite init and clean */
35 int init_suite(void);
36 int clean_suite(void);
37 
38 extern char* testdb;
39 
40 /* agent suite init and clean */
41 /* int agent_init_suite(void);
42 int agent_clean_suite(void); */
43 
44 /* test case sets */
45 extern CU_TestInfo tests_host[];
46 extern CU_TestInfo tests_interface[];
47 extern CU_TestInfo tests_interface_thread[];
48 
49 extern CU_TestInfo tests_meta_agent[];
50 extern CU_TestInfo tests_agent[];
51 
52 extern CU_TestInfo tests_event[];
53 
54 extern CU_TestInfo tests_database[];
55 extern CU_TestInfo tests_email[];
56 
57 extern CU_TestInfo tests_job[];
58 
59 extern CU_TestInfo tests_scheduler[];
60 /* scheduler private declarations */
int init_suite(void)
Definition: testRun.c:54
Log related operations.
int clean_suite(void)
Definition: testRun.c:76
Event handling operations.
Header file with agent related operations.
event_loop_t * event_loop_get()
Definition: event.c:59