summaryrefslogtreecommitdiff
path: root/projects/ExtraTests/X90-WindowsHeaderInclusion.cpp
blob: 2b7a074eeced074ed541e6a9a1426a4f5079e000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// X90-WindowsHeaderInclusion.cpp
// Test that the Catch2 header compiles even after including windows.h
// without defining NOMINMAX first. As an FYI, if you do that, you are
// wrong.

#include <windows.h>
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>

TEST_CASE("Catch2 did survive compilation with windows.h", "[compile-test]") {
    SUCCEED();
}