1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 #ifndef TEST_HTTPPARSER_H
30 #define TEST_HTTPPARSER_H
31
32 #include "test.h"
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 CX_TEST(test_parse_request_line);
39 CX_TEST(test_parse_response_line);
40 CX_TEST(test_http_parser_process_full);
41 CX_TEST(test_http_parser_process_chunk_1b);
42 CX_TEST(test_http_parser_process_chunk_2b);
43 CX_TEST(test_http_parser_process_chunk_3b);
44 CX_TEST(test_http_parser_process_chunk_4b);
45
46
47 #ifdef __cplusplus
48 }
49 #endif
50
51 #endif
52
53