Add a unit test including windows.h (#3631)
This commit is contained in:
parent
19e4c2bda0
commit
66c8bb5b90
21
tests/src/unit-windows_h.cpp
Normal file
21
tests/src/unit-windows_h.cpp
Normal file
@ -0,0 +1,21 @@
|
||||
// __ _____ _____ _____
|
||||
// __| | __| | | | JSON for Modern C++ (supporting code)
|
||||
// | | |__ | | | | | | version 3.10.5
|
||||
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
||||
//
|
||||
// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me>
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "doctest_compatibility.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include <nlohmann/json.hpp>
|
||||
using nlohmann::json;
|
||||
|
||||
TEST_CASE("include windows.h")
|
||||
{
|
||||
CHECK(true);
|
||||
}
|
Loading…
Reference in New Issue
Block a user