#ifndef TEST_HTTPPARSER_H
#define TEST_HTTPPARSER_H
#include "test.h"
#ifdef __cplusplus
extern "C" {
#endif
CX_TEST(test_parse_request_line);
CX_TEST(test_parse_response_line);
CX_TEST(test_http_parser_process_full);
CX_TEST(test_http_parser_process_chunk_1b);
CX_TEST(test_http_parser_process_chunk_2b);
CX_TEST(test_http_parser_process_chunk_3b);
CX_TEST(test_http_parser_process_chunk_4b);
#ifdef __cplusplus
}
#endif
#endif