1c5f01b2fSopenharmony_ci// __ _____ _____ _____ 2c5f01b2fSopenharmony_ci// __| | __| | | | JSON for Modern C++ (supporting code) 3c5f01b2fSopenharmony_ci// | | |__ | | | | | | version 3.11.2 4c5f01b2fSopenharmony_ci// |_____|_____|_____|_|___| https://github.com/nlohmann/json 5c5f01b2fSopenharmony_ci// 6c5f01b2fSopenharmony_ci// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me> 7c5f01b2fSopenharmony_ci// SPDX-License-Identifier: MIT 8c5f01b2fSopenharmony_ci 9c5f01b2fSopenharmony_ci#include "doctest_compatibility.h" 10c5f01b2fSopenharmony_ci 11c5f01b2fSopenharmony_ci#ifdef _WIN32 12c5f01b2fSopenharmony_ci #include <windows.h> 13c5f01b2fSopenharmony_ci#endif 14c5f01b2fSopenharmony_ci 15c5f01b2fSopenharmony_ci#include <nlohmann/json.hpp> 16c5f01b2fSopenharmony_ciusing nlohmann::json; 17c5f01b2fSopenharmony_ci 18c5f01b2fSopenharmony_ciTEST_CASE("include windows.h") 19c5f01b2fSopenharmony_ci{ 20c5f01b2fSopenharmony_ci CHECK(true); 21c5f01b2fSopenharmony_ci} 22