| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  Created by Phil on 22/10/2010. | 
					
						
							|  |  |  |  *  Copyright 2010 Two Blue Cubes Ltd | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  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_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define TWOBLUECUBES_CATCH_HPP_INCLUDED
 | 
					
						
							| 
									
										
										
										
											2012-06-02 23:12:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-16 18:47:41 +01:00
										 |  |  | #ifdef __clang__
 | 
					
						
							| 
									
										
										
										
											2012-10-30 09:09:30 +00:00
										 |  |  | #pragma clang diagnostic ignored "-Wglobal-constructors"
 | 
					
						
							| 
									
										
										
										
											2012-08-13 07:46:10 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #pragma clang diagnostic push
 | 
					
						
							|  |  |  | #pragma clang diagnostic ignored "-Wpadded"
 | 
					
						
							| 
									
										
										
										
											2012-08-16 18:47:41 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-08-13 07:46:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-06 20:16:53 +01:00
										 |  |  | #include "internal/catch_notimplemented_exception.h"
 | 
					
						
							| 
									
										
										
										
											2012-05-10 07:58:48 +01:00
										 |  |  | #include "internal/catch_context.h"
 | 
					
						
							| 
									
										
										
										
											2011-01-05 21:16:54 +00:00
										 |  |  | #include "internal/catch_test_registry.hpp"
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | #include "internal/catch_capture.hpp"
 | 
					
						
							|  |  |  | #include "internal/catch_section.hpp"
 | 
					
						
							| 
									
										
										
										
											2011-01-27 22:29:36 +00:00
										 |  |  | #include "internal/catch_generators.hpp"
 | 
					
						
							| 
									
										
										
										
											2011-04-20 15:40:40 +01:00
										 |  |  | #include "internal/catch_interfaces_exception.h"
 | 
					
						
							| 
									
										
										
										
											2011-04-28 08:03:28 +01:00
										 |  |  | #include "internal/catch_approx.hpp"
 | 
					
						
							| 
									
										
										
										
											2012-03-04 20:10:36 +00:00
										 |  |  | #include "internal/catch_matchers.hpp"
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-02 23:12:42 +01:00
										 |  |  | // These files are included here so the single_include script doesn't put them
 | 
					
						
							|  |  |  | // in the conditionally compiled sections
 | 
					
						
							| 
									
										
										
										
											2012-08-14 19:30:30 +01:00
										 |  |  | #include "internal/catch_test_case_info.h"
 | 
					
						
							| 
									
										
										
										
											2012-06-02 23:12:42 +01:00
										 |  |  | #include "internal/catch_interfaces_runner.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 18:52:10 +01:00
										 |  |  | #ifdef __OBJC__
 | 
					
						
							|  |  |  | #include "internal/catch_objc.hpp"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 08:23:02 +01:00
										 |  |  | #if defined( CATCH_CONFIG_MAIN ) || defined( CATCH_CONFIG_RUNNER )
 | 
					
						
							| 
									
										
										
										
											2012-08-06 20:16:53 +01:00
										 |  |  | #include "internal/catch_impl.hpp"
 | 
					
						
							| 
									
										
										
										
											2011-05-24 08:23:02 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CATCH_CONFIG_MAIN
 | 
					
						
							|  |  |  | #include "internal/catch_default_main.hpp"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | //////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | // If this config identifier is defined then all CATCH macros are prefixed with CATCH_
 | 
					
						
							|  |  |  | #ifdef CATCH_CONFIG_PREFIX_ALL
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:35:09 +00:00
										 |  |  | #define CATCH_REQUIRE( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::Normal, "CATCH_REQUIRE" )
 | 
					
						
							|  |  |  | #define CATCH_REQUIRE_FALSE( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::Normal | Catch::ResultDisposition::NegateResult, "CATCH_REQUIRE_FALSE" )
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define CATCH_REQUIRE_THROWS( expr ) INTERNAL_CATCH_THROWS( expr, ..., Catch::ResultDisposition::Normal, "CATCH_REQUIRE_THROWS" )
 | 
					
						
							|  |  |  | #define CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( expr, exceptionType, Catch::ResultDisposition::Normal, "CATCH_REQUIRE_THROWS_AS" )
 | 
					
						
							|  |  |  | #define CATCH_REQUIRE_NOTHROW( expr ) INTERNAL_CATCH_NO_THROW( expr, Catch::ResultDisposition::Normal, "CATCH_REQUIRE_NOTHROW" )
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:35:09 +00:00
										 |  |  | #define CATCH_CHECK( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::ContinueOnFailure, "CATCH_CHECK" )
 | 
					
						
							|  |  |  | #define CATCH_CHECK_FALSE( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::NegateResult, "CATCH_CHECK_FALSE" )
 | 
					
						
							|  |  |  | #define CATCH_CHECKED_IF( expr ) INTERNAL_CATCH_IF( expr, Catch::ResultDisposition::ContinueOnFailure, "CATCH_CHECKED_IF" )
 | 
					
						
							|  |  |  | #define CATCH_CHECKED_ELSE( expr ) INTERNAL_CATCH_ELSE( expr, Catch::ResultDisposition::ContinueOnFailure, "CATCH_CHECKED_ELSE" )
 | 
					
						
							| 
									
										
										
										
											2012-11-13 09:45:29 +00:00
										 |  |  | #define CATCH_CHECK_NOFAIL( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::SuppressFail, "CATCH_CHECK_NOFAIL" )
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define CATCH_CHECK_THROWS( expr )  INTERNAL_CATCH_THROWS( expr, ..., Catch::ResultDisposition::ContinueOnFailure, "CATCH_CHECK_THROWS" )
 | 
					
						
							|  |  |  | #define CATCH_CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( expr, exceptionType, Catch::ResultDisposition::ContinueOnFailure, "CATCH_CHECK_THROWS_AS" )
 | 
					
						
							|  |  |  | #define CATCH_CHECK_NOTHROW( expr ) INTERNAL_CATCH_NO_THROW( expr, Catch::ResultDisposition::ContinueOnFailure, "CATCH_CHECK_NOTHROW" )
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define CHECK_THAT( arg, matcher ) INTERNAL_CHECK_THAT( arg, matcher, Catch::ResultDisposition::ContinueOnFailure, "CATCH_CHECK_THAT" )
 | 
					
						
							|  |  |  | #define CATCH_REQUIRE_THAT( arg, matcher ) INTERNAL_CHECK_THAT( arg, matcher, Catch::ResultDisposition::Normal, "CATCH_REQUIRE_THAT" )
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define CATCH_INFO( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Info, Catch::ResultDisposition::ContinueOnFailure, "CATCH_INFO" )
 | 
					
						
							|  |  |  | #define CATCH_WARN( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Warning, Catch::ResultDisposition::ContinueOnFailure, "CATCH_WARN" )
 | 
					
						
							|  |  |  | #define CATCH_FAIL( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::Normal, "CATCH_FAIL" )
 | 
					
						
							|  |  |  | #define CATCH_SUCCEED( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Ok, Catch::ResultDisposition::ContinueOnFailure, "CATCH_SUCCEED" )
 | 
					
						
							| 
									
										
										
										
											2012-10-24 21:59:47 +01:00
										 |  |  | #define CATCH_SCOPED_INFO( msg ) INTERNAL_CATCH_SCOPED_INFO( msg, "CATCH_SCOPED_INFO" )
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define CATCH_CAPTURE( msg ) INTERNAL_CATCH_MSG( #msg " := " << msg, Catch::ResultWas::Info, Catch::ResultDisposition::ContinueOnFailure, "CATCH_CAPTURE" )
 | 
					
						
							| 
									
										
										
										
											2012-10-24 21:59:47 +01:00
										 |  |  | #define CATCH_SCOPED_CAPTURE( msg ) INTERNAL_CATCH_SCOPED_INFO( #msg " := " << msg, "CATCH_SCOPED_CAPTURE" )
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define CATCH_SECTION( name, description ) INTERNAL_CATCH_SECTION( name, description )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CATCH_TEST_CASE( name, description ) INTERNAL_CATCH_TESTCASE( name, description )
 | 
					
						
							|  |  |  | #define CATCH_TEST_CASE_NORETURN( name, description ) INTERNAL_CATCH_TESTCASE_NORETURN( name, description )
 | 
					
						
							|  |  |  | #define CATCH_ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE( "", "Anonymous test case" )
 | 
					
						
							|  |  |  | #define CATCH_METHOD_AS_TEST_CASE( method, name, description ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, name, description )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CATCH_REGISTER_REPORTER( name, reporterType ) INTERNAL_CATCH_REGISTER_REPORTER( name, reporterType )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CATCH_GENERATE( expr) INTERNAL_CATCH_GENERATE( expr )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // If CATCH_CONFIG_PREFIX_ALL is not defined then the CATCH_ prefix is not required
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:35:09 +00:00
										 |  |  | #define REQUIRE( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::Normal, "REQUIRE" )
 | 
					
						
							|  |  |  | #define REQUIRE_FALSE( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::Normal | Catch::ResultDisposition::NegateResult, "REQUIRE_FALSE" )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define REQUIRE_THROWS( expr ) INTERNAL_CATCH_THROWS( expr, ..., Catch::ResultDisposition::Normal, "REQUIRE_THROWS" )
 | 
					
						
							|  |  |  | #define REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( expr, exceptionType, Catch::ResultDisposition::Normal, "REQUIRE_THROWS_AS" )
 | 
					
						
							|  |  |  | #define REQUIRE_NOTHROW( expr ) INTERNAL_CATCH_NO_THROW( expr, Catch::ResultDisposition::Normal, "REQUIRE_NOTHROW" )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:35:09 +00:00
										 |  |  | #define CHECK( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::ContinueOnFailure, "CHECK" )
 | 
					
						
							|  |  |  | #define CHECK_FALSE( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::NegateResult, "CHECK_FALSE" )
 | 
					
						
							|  |  |  | #define CHECKED_IF( expr ) INTERNAL_CATCH_IF( expr, Catch::ResultDisposition::ContinueOnFailure, "CHECKED_IF" )
 | 
					
						
							|  |  |  | #define CHECKED_ELSE( expr ) INTERNAL_CATCH_ELSE( expr, Catch::ResultDisposition::ContinueOnFailure, "CHECKED_ELSE" )
 | 
					
						
							| 
									
										
										
										
											2012-11-13 09:44:52 +00:00
										 |  |  | #define CHECK_NOFAIL( expr ) INTERNAL_CATCH_TEST( expr, Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::SuppressFail, "CHECK_NOFAIL" )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define CHECK_THROWS( expr )  INTERNAL_CATCH_THROWS( expr, ..., Catch::ResultDisposition::ContinueOnFailure, "CHECK_THROWS" )
 | 
					
						
							|  |  |  | #define CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( expr, exceptionType, Catch::ResultDisposition::ContinueOnFailure, "CHECK_THROWS_AS" )
 | 
					
						
							|  |  |  | #define CHECK_NOTHROW( expr ) INTERNAL_CATCH_NO_THROW( expr, Catch::ResultDisposition::ContinueOnFailure, "CHECK_NOTHROW" )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define CHECK_THAT( arg, matcher ) INTERNAL_CHECK_THAT( arg, matcher, Catch::ResultDisposition::ContinueOnFailure, "CHECK_THAT" )
 | 
					
						
							|  |  |  | #define REQUIRE_THAT( arg, matcher ) INTERNAL_CHECK_THAT( arg, matcher, Catch::ResultDisposition::Normal, "REQUIRE_THAT" )
 | 
					
						
							| 
									
										
										
										
											2012-03-04 11:14:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define INFO( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Info, Catch::ResultDisposition::ContinueOnFailure, "INFO" )
 | 
					
						
							|  |  |  | #define WARN( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Warning, Catch::ResultDisposition::ContinueOnFailure, "WARN" )
 | 
					
						
							|  |  |  | #define FAIL( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::Normal, "FAIL" )
 | 
					
						
							|  |  |  | #define SUCCEED( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Ok, Catch::ResultDisposition::ContinueOnFailure, "SUCCEED" )
 | 
					
						
							| 
									
										
										
										
											2012-10-24 21:59:47 +01:00
										 |  |  | #define SCOPED_INFO( msg ) INTERNAL_CATCH_SCOPED_INFO( msg, "SCOPED_INFO" )
 | 
					
						
							| 
									
										
										
										
											2012-11-10 10:20:08 +00:00
										 |  |  | #define CAPTURE( msg ) INTERNAL_CATCH_MSG( #msg " := " << msg, Catch::ResultWas::Info, Catch::ResultDisposition::ContinueOnFailure, "CAPTURE" )
 | 
					
						
							| 
									
										
										
										
											2012-10-24 21:59:47 +01:00
										 |  |  | #define SCOPED_CAPTURE( msg ) INTERNAL_CATCH_SCOPED_INFO( #msg " := " << msg, "SCOPED_CAPTURE" )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-27 22:29:36 +00:00
										 |  |  | #define SECTION( name, description ) INTERNAL_CATCH_SECTION( name, description )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-10 07:42:15 +00:00
										 |  |  | #define TEST_CASE( name, description ) INTERNAL_CATCH_TESTCASE( name, description )
 | 
					
						
							| 
									
										
										
										
											2011-01-31 20:15:40 +00:00
										 |  |  | #define TEST_CASE_NORETURN( name, description ) INTERNAL_CATCH_TESTCASE_NORETURN( name, description )
 | 
					
						
							| 
									
										
										
										
											2011-01-18 20:09:21 +00:00
										 |  |  | #define ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE( "", "Anonymous test case" )
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | #define METHOD_AS_TEST_CASE( method, name, description ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, name, description )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-27 22:29:36 +00:00
										 |  |  | #define REGISTER_REPORTER( name, reporterType ) INTERNAL_CATCH_REGISTER_REPORTER( name, reporterType )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GENERATE( expr) INTERNAL_CATCH_GENERATE( expr )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 18:43:48 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CATCH_TRANSLATE_EXCEPTION( signature ) INTERNAL_CATCH_TRANSLATE_EXCEPTION( signature )
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-04 07:56:44 +01:00
										 |  |  | using Catch::Detail::Approx; | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-16 18:47:41 +01:00
										 |  |  | #ifdef __clang__
 | 
					
						
							| 
									
										
										
										
											2012-08-13 07:46:10 +01:00
										 |  |  | #pragma clang diagnostic pop
 | 
					
						
							| 
									
										
										
										
											2012-08-16 18:47:41 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-08-13 07:46:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-16 19:02:09 +00:00
										 |  |  | #endif // TWOBLUECUBES_CATCH_HPP_INCLUDED
 |