diff options
| author | Martin Ridgers <[email protected]> | 2021-09-21 11:06:13 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-09-21 11:06:13 +0200 |
| commit | 68c951e0f440ffd483795dced737e88152c1a581 (patch) | |
| tree | 5c0910ca2a85b45fb05dba3ce457b7d156213894 /zenhttp/httpclient.cpp | |
| parent | Merge main into linux-mac (diff) | |
| parent | Trigger storage scrubbing pass at startup (diff) | |
| download | zen-68c951e0f440ffd483795dced737e88152c1a581.tar.xz zen-68c951e0f440ffd483795dced737e88152c1a581.zip | |
Merged main into linux-mac
Diffstat (limited to 'zenhttp/httpclient.cpp')
| -rw-r--r-- | zenhttp/httpclient.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/zenhttp/httpclient.cpp b/zenhttp/httpclient.cpp index fb1df30b2..20550b0c9 100644 --- a/zenhttp/httpclient.cpp +++ b/zenhttp/httpclient.cpp @@ -10,10 +10,9 @@ #include <zencore/session.h> #include <zencore/sharedbuffer.h> #include <zencore/stream.h> +#include <zencore/testing.h> #include <zenhttp/httpshared.h> -#include <doctest/doctest.h> - static std::atomic<uint32_t> HttpClientRequestIdCounter{0}; namespace zen { @@ -159,6 +158,8 @@ HttpClient::Delete(std::string_view Url) ////////////////////////////////////////////////////////////////////////// +#if ZEN_WITH_TESTS + TEST_CASE("httpclient") { using namespace std::literals; @@ -171,4 +172,6 @@ httpclient_forcelink() { } +#endif + } // namespace zen |