userver: userver/utest/http_client.hpp Source File
⚠️ This is the documentation for an old userver version. Click here to switch to the latest version.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
http_client.hpp
1#pragma once
2
3#include <memory>
4
5USERVER_NAMESPACE_BEGIN
6
7namespace clients::http {
8class Client;
9} // namespace clients::http
10
11namespace engine {
12class TaskProcessor;
13}
14
15namespace utest {
16
17std::shared_ptr<clients::http::Client> CreateHttpClient();
18
19std::shared_ptr<clients::http::Client> CreateHttpClient(
20 engine::TaskProcessor& fs_task_processor);
21
22} // namespace utest
23
24USERVER_NAMESPACE_END