diff options
Diffstat (limited to 'libraries/eina/src/tests/eina_suite.h')
-rw-r--r-- | libraries/eina/src/tests/eina_suite.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/libraries/eina/src/tests/eina_suite.h b/libraries/eina/src/tests/eina_suite.h new file mode 100644 index 0000000..643d6cc --- /dev/null +++ b/libraries/eina/src/tests/eina_suite.h | |||
@@ -0,0 +1,58 @@ | |||
1 | /* EINA - EFL data type library | ||
2 | * Copyright (C) 2008 Cedric Bail | ||
3 | * | ||
4 | * This library is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU Lesser General Public | ||
6 | * License as published by the Free Software Foundation; either | ||
7 | * version 2.1 of the License, or (at your option) any later version. | ||
8 | * | ||
9 | * This library is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
12 | * Lesser General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU Lesser General Public | ||
15 | * License along with this library; | ||
16 | * if not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #ifndef EINA_SUITE_H_ | ||
20 | #define EINA_SUITE_H_ | ||
21 | |||
22 | #include <check.h> | ||
23 | |||
24 | void eina_test_stringshare(TCase *tc); | ||
25 | void eina_test_ustringshare(TCase *tc); | ||
26 | void eina_test_binshare(TCase *tc); | ||
27 | void eina_test_array(TCase *tc); | ||
28 | void eina_test_log(TCase *tc); | ||
29 | void eina_test_error(TCase *tc); | ||
30 | void eina_test_magic(TCase *tc); | ||
31 | void eina_test_inlist(TCase *tc); | ||
32 | void eina_test_clist(TCase *tc); | ||
33 | void eina_test_lalloc(TCase *tc); | ||
34 | void eina_test_main(TCase *tc); | ||
35 | void eina_test_counter(TCase *tc); | ||
36 | void eina_test_hash(TCase *tc); | ||
37 | void eina_test_list(TCase *tc); | ||
38 | void eina_test_iterator(TCase *tc); | ||
39 | void eina_test_accessor(TCase *tc); | ||
40 | void eina_test_module(TCase *tc); | ||
41 | void eina_test_convert(TCase *tc); | ||
42 | void eina_test_rbtree(TCase *tc); | ||
43 | void eina_test_file(TCase *tc); | ||
44 | void eina_test_benchmark(TCase *tc); | ||
45 | void eina_test_mempool(TCase *tc); | ||
46 | void eina_test_rectangle(TCase *tc); | ||
47 | void eina_test_matrixsparse(TCase *tc); | ||
48 | void eina_test_tiler(TCase *tc); | ||
49 | void eina_test_strbuf(TCase *tc); | ||
50 | void eina_test_binbuf(TCase *tc); | ||
51 | void eina_test_str(TCase *tc); | ||
52 | void eina_test_ustr(TCase *tc); | ||
53 | void eina_test_quadtree(TCase *tc); | ||
54 | void eina_test_fp(TCase *tc); | ||
55 | void eina_test_sched(TCase *tc); | ||
56 | void eina_test_simple_xml_parser(TCase *tc); | ||
57 | |||
58 | #endif /* EINA_SUITE_H_ */ | ||