#34 实现HTTP解析层的Suspend/Resume操作

This commit is contained in:
Lu Qiuwen
2018-10-11 10:41:27 +08:00
committed by zhengchao
parent adb469395c
commit b8342e5358
9 changed files with 132 additions and 29 deletions

View File

@@ -18,6 +18,11 @@ add_executable(test-http-convert test/test_http_convert.cpp)
target_include_directories(test-http-convert PRIVATE include/internal)
target_link_libraries(test-http-convert gtest common http)
add_executable(test-http-entry test/test_http_convert.cpp)
target_include_directories(test-http-entry PRIVATE include/internal)
target_link_libraries(test-http-entry gtest common http)
include(GoogleTest)
gtest_discover_tests(test-http-half)
gtest_discover_tests(test-http-convert)
gtest_discover_tests(test-http-entry)