mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
build 13
toString for std:tuple
This commit is contained in:
parent
50183208a3
commit
7f5615272b
@ -1,6 +1,6 @@
|
|||||||
![catch logo](catch-logo-small.png)
|
![catch logo](catch-logo-small.png)
|
||||||
|
|
||||||
*v1.1 build 12 (develop branch)*
|
*v1.1 build 13 (develop branch)*
|
||||||
|
|
||||||
Build status (on Travis CI) [![Build Status](https://travis-ci.org/philsquared/Catch.png)](https://travis-ci.org/philsquared/Catch)
|
Build status (on Travis CI) [![Build Status](https://travis-ci.org/philsquared/Catch.png)](https://travis-ci.org/philsquared/Catch)
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
// These numbers are maintained by a script
|
// These numbers are maintained by a script
|
||||||
Version libraryVersion( 1, 1, 12, "develop" );
|
Version libraryVersion( 1, 1, 13, "develop" );
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED
|
#endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* CATCH v1.1 build 12 (develop branch)
|
* CATCH v1.1 build 13 (develop branch)
|
||||||
* Generated: 2014-12-30 18:25:37.281243
|
* Generated: 2014-12-30 18:47:08.984634
|
||||||
* ----------------------------------------------------------
|
* ----------------------------------------------------------
|
||||||
* This file has been merged from multiple headers. Please don't edit it directly
|
* This file has been merged from multiple headers. Please don't edit it directly
|
||||||
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
|
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
|
||||||
@ -1049,12 +1049,45 @@ inline id performOptionalSelector( id obj, SEL sel ) {
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CATCH_CPP11_OR_GREATER
|
||||||
|
#include <tuple>
|
||||||
|
#include <type_traits>
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
// Why we're here.
|
// Why we're here.
|
||||||
template<typename T>
|
template<typename T>
|
||||||
std::string toString( T const& value );
|
std::string toString( T const& value );
|
||||||
|
|
||||||
|
// Built in overloads
|
||||||
|
|
||||||
|
std::string toString( std::string const& value );
|
||||||
|
std::string toString( std::wstring const& value );
|
||||||
|
std::string toString( const char* const value );
|
||||||
|
std::string toString( char* const value );
|
||||||
|
std::string toString( const wchar_t* const value );
|
||||||
|
std::string toString( wchar_t* const value );
|
||||||
|
std::string toString( int value );
|
||||||
|
std::string toString( unsigned long value );
|
||||||
|
std::string toString( unsigned int value );
|
||||||
|
std::string toString( const double value );
|
||||||
|
std::string toString( const float value );
|
||||||
|
std::string toString( bool value );
|
||||||
|
std::string toString( char value );
|
||||||
|
std::string toString( signed char value );
|
||||||
|
std::string toString( unsigned char value );
|
||||||
|
|
||||||
|
#ifdef CATCH_CONFIG_CPP11_NULLPTR
|
||||||
|
std::string toString( std::nullptr_t );
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __OBJC__
|
||||||
|
std::string toString( NSString const * const& nsstring );
|
||||||
|
std::string toString( NSString * CATCH_ARC_STRONG const& nsstring );
|
||||||
|
std::string toString( NSObject* const& nsObject );
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Detail {
|
namespace Detail {
|
||||||
|
|
||||||
extern std::string unprintableString;
|
extern std::string unprintableString;
|
||||||
@ -1194,6 +1227,48 @@ std::string toString( std::vector<T,Allocator> const& v ) {
|
|||||||
return Detail::rangeToString( v.begin(), v.end() );
|
return Detail::rangeToString( v.begin(), v.end() );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CATCH_CPP11_OR_GREATER
|
||||||
|
toString for tuples
|
||||||
|
*/
|
||||||
|
namespace TupleDetail {
|
||||||
|
template<
|
||||||
|
typename Tuple,
|
||||||
|
std::size_t N = 0,
|
||||||
|
bool = (N < std::tuple_size<Tuple>::value)
|
||||||
|
>
|
||||||
|
struct ElementPrinter {
|
||||||
|
static void print( const Tuple& tuple, std::ostream& os )
|
||||||
|
{
|
||||||
|
os << ( N ? ", " : " " )
|
||||||
|
<< Catch::toString(std::get<N>(tuple));
|
||||||
|
ElementPrinter<Tuple,N+1>::print(tuple,os);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<
|
||||||
|
typename Tuple,
|
||||||
|
std::size_t N
|
||||||
|
>
|
||||||
|
struct ElementPrinter<Tuple,N,false> {
|
||||||
|
static void print( const Tuple&, std::ostream& ) {}
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename ...Types>
|
||||||
|
struct StringMaker<std::tuple<Types...>> {
|
||||||
|
|
||||||
|
static std::string convert( const std::tuple<Types...>& tuple )
|
||||||
|
{
|
||||||
|
std::ostringstream os;
|
||||||
|
os << '{';
|
||||||
|
TupleDetail::ElementPrinter<std::tuple<Types...>>::print( tuple, os );
|
||||||
|
os << " }";
|
||||||
|
return os.str();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Detail {
|
namespace Detail {
|
||||||
template<typename T>
|
template<typename T>
|
||||||
std::string makeString( T const& value ) {
|
std::string makeString( T const& value ) {
|
||||||
@ -1213,34 +1288,6 @@ std::string toString( T const& value ) {
|
|||||||
return StringMaker<T>::convert( value );
|
return StringMaker<T>::convert( value );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Built in overloads
|
|
||||||
|
|
||||||
std::string toString( std::string const& value );
|
|
||||||
std::string toString( std::wstring const& value );
|
|
||||||
std::string toString( const char* const value );
|
|
||||||
std::string toString( char* const value );
|
|
||||||
std::string toString( const wchar_t* const value );
|
|
||||||
std::string toString( wchar_t* const value );
|
|
||||||
std::string toString( int value );
|
|
||||||
std::string toString( unsigned long value );
|
|
||||||
std::string toString( unsigned int value );
|
|
||||||
std::string toString( const double value );
|
|
||||||
std::string toString( const float value );
|
|
||||||
std::string toString( bool value );
|
|
||||||
std::string toString( char value );
|
|
||||||
std::string toString( signed char value );
|
|
||||||
std::string toString( unsigned char value );
|
|
||||||
|
|
||||||
#ifdef CATCH_CONFIG_CPP11_NULLPTR
|
|
||||||
std::string toString( std::nullptr_t );
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __OBJC__
|
|
||||||
std::string toString( NSString const * const& nsstring );
|
|
||||||
std::string toString( NSString * CATCH_ARC_STRONG const& nsstring );
|
|
||||||
std::string toString( NSObject* const& nsObject );
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace Detail {
|
namespace Detail {
|
||||||
template<typename InputIterator>
|
template<typename InputIterator>
|
||||||
std::string rangeToString( InputIterator first, InputIterator last ) {
|
std::string rangeToString( InputIterator first, InputIterator last ) {
|
||||||
@ -6689,7 +6736,7 @@ namespace Catch {
|
|||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
// These numbers are maintained by a script
|
// These numbers are maintained by a script
|
||||||
Version libraryVersion( 1, 1, 12, "develop" );
|
Version libraryVersion( 1, 1, 13, "develop" );
|
||||||
}
|
}
|
||||||
|
|
||||||
// #included from: catch_message.hpp
|
// #included from: catch_message.hpp
|
||||||
|
Loading…
Reference in New Issue
Block a user