2019-08-09 10:50:53 +02:00
|
|
|
/*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
|
2020-01-20 23:24:04 +01:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
2020-03-30 10:34:21 +02:00
|
|
|
#include <catch2/internal/catch_enforce.hpp>
|
2019-08-09 10:50:53 +02:00
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4702) // unreachable code in the macro expansions
|
|
|
|
#endif
|
|
|
|
|
2019-08-09 11:08:23 +02:00
|
|
|
TEST_CASE("Check that our error handling macros throw the right exceptions", "[!throws][internals][approvals]") {
|
2019-08-09 10:50:53 +02:00
|
|
|
REQUIRE_THROWS_AS(CATCH_INTERNAL_ERROR(""), std::logic_error);
|
|
|
|
REQUIRE_THROWS_AS(CATCH_ERROR(""), std::domain_error);
|
|
|
|
REQUIRE_THROWS_AS(CATCH_RUNTIME_ERROR(""), std::runtime_error);
|
|
|
|
REQUIRE_THROWS_AS([](){CATCH_ENFORCE(false, "");}(), std::domain_error);
|
|
|
|
REQUIRE_NOTHROW([](){CATCH_ENFORCE(true, "");}());
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(pop) // unreachable code in the macro expansions
|
|
|
|
#endif
|