#include "catch.hpp" // === Pair === namespace Catch { // Note: If we put this in the right place in catch_tostring, then // we can make it an overload of Catch::toString template struct StringMaker > { static std::string convert( const std::pair& pair ) { std::ostringstream oss; oss << "{ " << toString( pair.first ) << ", " << toString( pair.second ) << " }"; return oss.str(); } }; } TEST_CASE( "std::pair -> toString", "[toString][pair]" ) { std::pair value( 34, "xyzzy" ); REQUIRE( Catch::toString( value ) == "{ 34, \"xyzzy\" }" ); } TEST_CASE( "std::pair -> toString", "[toString][pair]" ) { std::pair value( 34, "xyzzy" ); REQUIRE( Catch::toString(value) == "{ 34, \"xyzzy\" }" ); } TEST_CASE( "std::vector > -> toString", "[toString][pair]" ) { std::vector > pr; pr.push_back( std::make_pair("green", 55 ) ); REQUIRE( Catch::toString( pr ) == "{ { \"green\", 55 } }" ); } // This is pretty contrived - I figure if this works, anything will... TEST_CASE( "pair > -> toString", "[toString][pair]" ) { typedef std::pair left_t; typedef std::pair right_t; left_t left( 42, "Arthur" ); right_t right( "Ford", 24 ); std::pair pair( left, right ); REQUIRE( Catch::toString( pair ) == "{ { 42, \"Arthur\" }, { \"Ford\", 24 } }" ); }