OSDN Git Service

implement parser for rfc733 format date text.
[bbk/bchan.git] / src / test.h
1 /*
2  * test.h
3  *
4  * Copyright (c) 2009-2011 project bchan
5  *
6  * This software is provided 'as-is', without any express or implied
7  * warranty. In no event will the authors be held liable for any damages
8  * arising from the use of this software.
9  *
10  * Permission is granted to anyone to use this software for any purpose,
11  * including commercial applications, and to alter it and redistribute it
12  * freely, subject to the following restrictions:
13  *
14  * 1. The origin of this software must not be misrepresented; you must not
15  *    claim that you wrote the original software. If you use this software
16  *    in a product, an acknowledgment in the product documentation would be
17  *    appreciated but is not required.
18  *
19  * 2. Altered source versions must be plainly marked as such, and must not be
20  *    misrepresented as being the original software.
21  *
22  * 3. This notice may not be removed or altered from any source
23  *    distribution.
24  *
25  */
26
27 #include    <basic.h>
28
29 #ifndef __BCHAN_TEST_H__
30 #define __BCHAN_TEST_H__
31
32 typedef enum {
33         TEST_RESULT_PASS,
34         TEST_RESULT_FAIL
35 } TEST_RESULT;
36
37 /* test_cache.c */
38 IMPORT VOID test_cache_main();
39
40 /* test_parser.c */
41 IMPORT VOID test_parser_main();
42
43 /* test_layout.c */
44 IMPORT VOID test_layout_main();
45
46 /* test_parselib.c */
47 IMPORT VOID test_parselib_main();
48
49 /* test_submitutil.c */
50 IMPORT VOID test_submitutil_main();
51
52 /* test_sjisstring.c */
53 IMPORT VOID test_sjistring_main();
54
55 /* test_residhash.c */
56 IMPORT VOID test_residhash_main();
57
58 /* test_resindexhash.c */
59 IMPORT VOID test_resindexhash_main();
60
61 /* test_postres.c */
62 IMPORT VOID test_postres_main();
63
64 /* test_tadimf.c */
65 IMPORT VOID test_tadimf_main();
66
67 /* test_array.c */
68 IMPORT VOID test_array_main();
69
70 /* test_wordlist.c */
71 IMPORT VOID test_wordlist_main();
72
73 /* test_tadsearch.c */
74 IMPORT VOID test_tadsearch_main();
75
76 /* test_httpheaderlexer.c */
77 IMPORT VOID test_httpheaderlexer_main();
78
79 #endif