2017-08-01 18:46:33 +02:00
|
|
|
/*
|
|
|
|
* Created by Martin on 01/08/2017.
|
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_ENFORCE_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_ENFORCE_H_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_common.h"
|
2018-09-03 17:52:48 +02:00
|
|
|
#include "catch_compiler_capabilities.h"
|
2017-11-07 19:01:10 +01:00
|
|
|
#include "catch_stream.h"
|
2017-08-01 18:46:33 +02:00
|
|
|
|
2018-09-03 17:52:48 +02:00
|
|
|
|
2017-08-02 00:26:52 +02:00
|
|
|
#include <stdexcept>
|
2017-08-01 18:46:33 +02:00
|
|
|
|
2018-09-03 17:52:48 +02:00
|
|
|
namespace Catch {
|
|
|
|
#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
|
|
|
|
template <typename Ex>
|
|
|
|
[[noreturn]]
|
|
|
|
void throw_exception(Ex const& e) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
#else // ^^ Exceptions are enabled // Exceptions are disabled vv
|
|
|
|
[[noreturn]]
|
|
|
|
void throw_exception(std::exception const& e);
|
|
|
|
#endif
|
|
|
|
} // namespace Catch;
|
|
|
|
|
2017-08-01 18:46:33 +02:00
|
|
|
#define CATCH_PREPARE_EXCEPTION( type, msg ) \
|
2018-02-15 14:59:02 +01:00
|
|
|
type( ( Catch::ReusableStringStream() << msg ).str() )
|
2017-08-01 18:46:33 +02:00
|
|
|
#define CATCH_INTERNAL_ERROR( msg ) \
|
2018-09-03 17:52:48 +02:00
|
|
|
Catch::throw_exception(CATCH_PREPARE_EXCEPTION( std::logic_error, CATCH_INTERNAL_LINEINFO << ": Internal Catch error: " << msg))
|
2017-08-01 18:46:33 +02:00
|
|
|
#define CATCH_ERROR( msg ) \
|
2018-09-03 17:52:48 +02:00
|
|
|
Catch::throw_exception(CATCH_PREPARE_EXCEPTION( std::domain_error, msg ))
|
2018-09-03 10:03:47 +02:00
|
|
|
#define CATCH_RUNTIME_ERROR( msg ) \
|
2018-09-03 17:52:48 +02:00
|
|
|
Catch::throw_exception(CATCH_PREPARE_EXCEPTION( std::runtime_error, msg ))
|
2017-08-01 18:46:33 +02:00
|
|
|
#define CATCH_ENFORCE( condition, msg ) \
|
|
|
|
do{ if( !(condition) ) CATCH_ERROR( msg ); } while(false)
|
|
|
|
|
2018-09-03 17:52:48 +02:00
|
|
|
|
2017-08-01 18:46:33 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_ENFORCE_H_INCLUDED
|