commit | 4712a7b92174eba66a13837ce5ccf108eeef0f69 | [log] [tgz] |
---|---|---|
author | Nan Zhou <nanzhoumails@gmail.com> | Mon Jun 27 00:05:28 2022 +0000 |
committer | Nan Zhou <nanzhoumails@gmail.com> | Tue Jun 28 00:13:11 2022 +0000 |
tree | f356d7b2da727ad1e3aaa3dd55694eed98ad634c | |
parent | ef74026a7cb80b880671a8f3b803a68a2acb69d0 [diff] |
query_param: 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: I80133bb38fbea886c9c7207b2ec16c0aeacca6d5
diff --git a/redfish-core/include/utils/query_param_test.cpp b/redfish-core/include/utils/query_param_test.cpp index 97f9c38..626d573 100644 --- a/redfish-core/include/utils/query_param_test.cpp +++ b/redfish-core/include/utils/query_param_test.cpp
@@ -1,11 +1,14 @@ #include "query_param.hpp" +#include <boost/system/result.hpp> +#include <boost/url/url_view.hpp> #include <nlohmann/json.hpp> +#include <cstddef> #include <iostream> -#include "gmock/gmock.h" -#include "gtest/gtest.h" +#include <gmock/gmock-matchers.h> +#include <gtest/gtest.h> namespace redfish::query_param {