mirror of
https://github.com/catchorg/Catch2.git
synced 2026-05-11 23:48:41 -04:00
9f0120a5e9
To make this all work, I had to remove the stringification cache from matchers. In theory, this can cause performance penalty in cases where single matcher instance is stringified multiple times, but in practice this does not happen much, and the difference is surprisingly small anyway, because the performance of stringification is already horrible and full of allocating strings just to throw them away. The matcher combinators need P2738 from C++26 to be `constexpr`. TODO: close related issues
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
|
|
// Copyright Catch2 Authors
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE.txt or copy at
|
|
// https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
/**\file
|
|
* Checks that when `STATIC_CHECK` is deferred to runtime and fails, it
|
|
* does not abort the test case.
|
|
*/
|
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
#include <catch2/matchers/catch_matchers_templated.hpp>
|
|
|
|
#if defined( CATCH_INTERNAL_CONSTEXPR_MATCHERS_ENABLED )
|
|
|
|
namespace {
|
|
struct MatchNoneMatcher final : public Catch::Matchers::MatcherGenericBase {
|
|
public:
|
|
template <typename Any>
|
|
constexpr bool match( Any&& ) const {
|
|
return false;
|
|
}
|
|
|
|
std::string describe() const override {
|
|
using namespace std::string_literals;
|
|
return "Matches anything"s;
|
|
}
|
|
};
|
|
|
|
constexpr MatchNoneMatcher MatchNone() { return MatchNoneMatcher(); }
|
|
|
|
} // namespace
|
|
|
|
#endif
|
|
|
|
TEST_CASE("Deferred static checks") {
|
|
STATIC_CHECK(1 == 2);
|
|
STATIC_CHECK_FALSE(1 != 2);
|
|
#if defined(CATCH_INTERNAL_CONSTEXPR_MATCHERS_ENABLED)
|
|
STATIC_CHECK_THAT(1, MatchNone());
|
|
#endif
|
|
// This last assertion must be executed too
|
|
CHECK(1 == 2);
|
|
}
|