catch2/tests/ExtraTests/X02-DisabledMacros.cpp

40 lines
897 B
C++
Raw Normal View History

2018-09-01 17:28:06 +02:00
// X02-DisabledMacros.cpp
// Test that CATCH_CONFIG_DISABLE turns off TEST_CASE autoregistration
// and expressions in assertion macros are not run.
2020-01-21 15:03:07 +01:00
#include <catch2/catch_test_macros.hpp>
2018-09-01 17:28:06 +02:00
#include <iostream>
struct foo {
foo(){
REQUIRE_NOTHROW( print() );
}
void print() const {
std::cout << "This should not happen\n";
}
};
2020-02-21 21:13:57 +01:00
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wglobal-constructors"
#endif
2018-09-01 17:28:06 +02:00
// Construct foo, but `foo::print` should not be run
foo f;
2020-02-21 21:13:57 +01:00
#if defined(__clang__)
// The test is unused since the registration is disabled
#pragma clang diagnostic ignored "-Wunused-function"
#endif
2018-09-01 17:28:06 +02:00
// This test should not be run, because it won't be registered
TEST_CASE( "Disabled Macros" ) {
std::cout << "This should not happen\n";
FAIL();
}
2020-02-21 21:13:57 +01:00
#if defined(__clang__)
#pragma clang diagnostic pop
#endif