mirror of
https://github.com/catchorg/Catch2.git
synced 2025-02-06 07:33:28 +01:00
![Martin Hořeňovský](/assets/img/avatar_default.png)
If you do this, you are wrong, but apparently people expect libraries to work around intrusive lower cased macros. Oh well.
13 lines
359 B
C++
13 lines
359 B
C++
// 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();
|
|
}
|