Crossfire Server, Trunk
check_floor.cpp
Go to the documentation of this file.
1 /*
2  * static char *rcsid_check_floor_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 random_maps/floor.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 *floor_suite(void) {
50  Suite *s = suite_create("floor");
51  TCase *tc_core = tcase_create("Core");
52  /*setup and teardown will be called before each test in testcase 'tc_core' */
53  tcase_add_checked_fixture(tc_core, setup, teardown);
54 
55  suite_add_tcase(s, tc_core);
56  tcase_add_test(tc_core, test_empty);
57 
58  return s;
59 }
60 
61 int main(void) {
62  int nf;
63  Suite *s = floor_suite();
64  SRunner *sr = srunner_create(s);
65 
66  srunner_set_xml(sr, LOGDIR "/unit/random_maps/floor.xml");
67  srunner_set_log(sr, LOGDIR "/unit/random_maps/floor.out");
68  srunner_run_all(sr, CK_ENV); /*verbosity from env variable*/
69  nf = srunner_ntests_failed(sr);
70  srunner_free(sr);
71  return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
72 }
START_TEST
START_TEST(test_empty)
Definition: check_floor.cpp:44
setup
void setup(void)
Definition: check_floor.cpp:36
teardown
void teardown(void)
Definition: check_floor.cpp:40
floor_suite
END_TEST Suite * floor_suite(void)
Definition: check_floor.cpp:49
main
int main(void)
Definition: check_floor.cpp:61