2010-11-09 23:24:00 +00:00
|
|
|
/*
|
|
|
|
* Created by Phil on 29/10/2010.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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_COMMON_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
|
2017-01-11 16:23:16 +00:00
|
|
|
#include "catch_compiler_capabilities.h"
|
|
|
|
|
2010-11-10 07:42:15 +00:00
|
|
|
#define INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) name##line
|
|
|
|
#define INTERNAL_CATCH_UNIQUE_NAME_LINE( name, line ) INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line )
|
2015-12-15 07:50:51 +00:00
|
|
|
#ifdef CATCH_CONFIG_COUNTER
|
|
|
|
# define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __COUNTER__ )
|
|
|
|
#else
|
|
|
|
# define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __LINE__ )
|
|
|
|
#endif
|
2010-11-09 23:24:00 +00:00
|
|
|
|
2011-03-18 14:39:58 +00:00
|
|
|
#define INTERNAL_CATCH_STRINGIFY2( expr ) #expr
|
|
|
|
#define INTERNAL_CATCH_STRINGIFY( expr ) INTERNAL_CATCH_STRINGIFY2( expr )
|
|
|
|
|
2017-08-01 18:46:33 +02:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <string>
|
|
|
|
#include <cstdint>
|
2011-02-23 09:06:05 +00:00
|
|
|
|
2012-05-15 08:02:36 +01:00
|
|
|
namespace Catch {
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2015-07-02 23:02:35 +01:00
|
|
|
struct IConfig;
|
2012-05-15 08:02:36 +01:00
|
|
|
|
2015-07-15 23:02:25 +01:00
|
|
|
struct CaseSensitive { enum Choice {
|
|
|
|
Yes,
|
|
|
|
No
|
|
|
|
}; };
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2013-03-08 09:26:20 +00:00
|
|
|
class NonCopyable {
|
2014-10-03 08:15:27 +01:00
|
|
|
NonCopyable( NonCopyable const& ) = delete;
|
|
|
|
NonCopyable( NonCopyable && ) = delete;
|
|
|
|
NonCopyable& operator = ( NonCopyable const& ) = delete;
|
|
|
|
NonCopyable& operator = ( NonCopyable && ) = delete;
|
|
|
|
|
2013-03-08 09:26:20 +00:00
|
|
|
protected:
|
|
|
|
NonCopyable() {}
|
|
|
|
virtual ~NonCopyable();
|
|
|
|
};
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2012-05-15 08:02:36 +01:00
|
|
|
struct SourceLineInfo {
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2017-07-13 08:25:47 +01:00
|
|
|
SourceLineInfo() noexcept;
|
|
|
|
SourceLineInfo( char const* _file, std::size_t _line ) noexcept;
|
2017-04-25 12:41:30 +02:00
|
|
|
|
2017-01-29 22:03:27 +01:00
|
|
|
SourceLineInfo(SourceLineInfo const& other) = default;
|
2014-03-20 12:48:19 +01:00
|
|
|
SourceLineInfo( SourceLineInfo && ) = default;
|
|
|
|
SourceLineInfo& operator = ( SourceLineInfo const& ) = default;
|
|
|
|
SourceLineInfo& operator = ( SourceLineInfo && ) = default;
|
2017-04-25 12:41:30 +02:00
|
|
|
|
2017-07-13 08:25:47 +01:00
|
|
|
bool empty() const noexcept;
|
|
|
|
bool operator == ( SourceLineInfo const& other ) const noexcept;
|
|
|
|
bool operator < ( SourceLineInfo const& other ) const noexcept;
|
2013-12-03 18:52:41 +00:00
|
|
|
|
2017-01-29 22:03:27 +01:00
|
|
|
char const* file;
|
2013-07-03 19:14:59 +01:00
|
|
|
std::size_t line;
|
2012-02-15 08:20:06 +00:00
|
|
|
};
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2013-12-03 18:52:41 +00:00
|
|
|
std::ostream& operator << ( std::ostream& os, SourceLineInfo const& info );
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2013-04-23 20:52:49 +01:00
|
|
|
// This is just here to avoid compiler warnings with macro constants and boolean literals
|
2017-07-12 16:16:55 +02:00
|
|
|
bool isTrue( bool value );
|
|
|
|
bool alwaysTrue();
|
|
|
|
bool alwaysFalse();
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2015-07-02 23:02:35 +01:00
|
|
|
void seedRng( IConfig const& config );
|
|
|
|
unsigned int rngSeed();
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2013-12-12 23:02:31 +00:00
|
|
|
// Use this in variadic streaming macros to allow
|
|
|
|
// >> +StreamEndStop
|
|
|
|
// as well as
|
|
|
|
// >> stuff +StreamEndStop
|
|
|
|
struct StreamEndStop {
|
2017-07-25 21:57:35 +02:00
|
|
|
std::string operator+() const;
|
2013-12-12 23:02:31 +00:00
|
|
|
};
|
|
|
|
template<typename T>
|
|
|
|
T const& operator + ( T const& value, StreamEndStop ) {
|
|
|
|
return value;
|
|
|
|
}
|
2010-11-12 19:32:13 +00:00
|
|
|
}
|
2011-02-23 09:06:05 +00:00
|
|
|
|
2017-05-05 18:39:49 +01:00
|
|
|
#define CATCH_INTERNAL_LINEINFO \
|
|
|
|
::Catch::SourceLineInfo( __FILE__, static_cast<std::size_t>( __LINE__ ) )
|
2010-11-12 19:32:13 +00:00
|
|
|
|
2011-02-16 19:02:09 +00:00
|
|
|
#endif // TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
|