commit | 26500f2dac8a59bc184b105c7b0a551286e9da9d | [log] [tgz] |
---|---|---|
author | Nan Zhou <nanzhoumails@gmail.com> | Sun Jun 26 23:35:30 2022 +0000 |
committer | Ed Tanous <ed@tanous.net> | Tue Jun 28 00:08:36 2022 +0000 |
tree | b7a884ecd44d8d2110ac9cdf4407aa16df421314 | |
parent | 3b5c75e3a49dbb90b3e13e799b1d5d3e04c6b82b [diff] [blame] |
http: utility_test: fix headers IWYU. Use <> for dependency headers and "" for bmcweb headers. Reference: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#sf12-prefer-the-quoted-form-of-include-for-files-relative-to-the-including-file-and-the-angle-bracket-form-everywhere-else Signed-off-by: Nan Zhou <nanzhoumails@gmail.com> Change-Id: I0338d475990eaf2f0f8105b01d63c2d9bd9fc446
diff --git a/http/ut/utility_test.cpp b/http/ut/utility_test.cpp index 1600e7f..ca915f6 100644 --- a/http/ut/utility_test.cpp +++ b/http/ut/utility_test.cpp
@@ -2,8 +2,19 @@ #include "utility.hpp" -#include "gmock/gmock.h" -#include "gtest/gtest.h" +#include <boost/url/error.hpp> +#include <boost/url/url.hpp> +#include <boost/url/url_view.hpp> +#include <nlohmann/json.hpp> + +#include <cstdint> +#include <ctime> +#include <functional> +#include <limits> +#include <string> +#include <string_view> + +#include <gtest/gtest.h> namespace crow::utility {