Crossfire Server, Trunk
check_resurrection.c
Go to the documentation of this file.
1 /*
2  * static char *rcsid_check_resurrection_c =
3  * "$Id$";
4  */
5 
6 /*
7  * CrossFire, A Multiplayer game for X-windows
8  *
9  * Copyright (C) 2002 Mark Wedel & Crossfire Development Team
10  * Copyright (C) 1992 Frank Tore Johansen
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  *
26  * The authors can be reached via e-mail at crossfire-devel@real-time.com
27  */
28 
29 /*
30  * This is the unit tests file for server/resurrection.c
31  */
32 
33 #include <stdlib.h>
34 #include <check.h>
35 
36 void setup(void) {
37  /* put any initialisation steps here, they will be run before each testcase */
38 }
39 
40 void teardown(void) {
41  /* put any cleanup steps here, they will be run after each testcase */
42 }
43 
44 START_TEST(test_empty) {
45  /*TESTME test not yet developped*/
46 }
47 END_TEST
48 
49 Suite *resurrection_suite(void) {
50  Suite *s = suite_create("resurrection");
51  TCase *tc_core = tcase_create("Core");
52 
53  /*setup and teardown will be called before each test in testcase 'tc_core' */
54  tcase_add_checked_fixture(tc_core, setup, teardown);
55 
56  suite_add_tcase(s, tc_core);
57  tcase_add_test(tc_core, test_empty);
58 
59  return s;
60 }
61 
62 int main(void) {
63  int nf;
64  Suite *s = resurrection_suite();
65  SRunner *sr = srunner_create(s);
66 
67  srunner_set_xml(sr, LOGDIR "/unit/server/resurrection.xml");
68  srunner_set_log(sr, LOGDIR "/unit/server/resurrection.out");
69  srunner_run_all(sr, CK_ENV); /*verbosity from env variable*/
70  nf = srunner_ntests_failed(sr);
71  srunner_free(sr);
72  return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
73 }
resurrection_suite
END_TEST Suite * resurrection_suite(void)
Definition: check_resurrection.c:49
setup
void setup(void)
Definition: check_resurrection.c:36
main
int main(void)
Definition: check_resurrection.c:62
teardown
void teardown(void)
Definition: check_resurrection.c:40
START_TEST
START_TEST(test_empty)
Definition: check_resurrection.c:44