2017-10-09 12:31:22 +02:00
|
|
|
#define CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER
|
2020-01-20 23:24:04 +01:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
2014-09-01 19:09:37 +02:00
|
|
|
|
2014-09-04 08:27:09 +02:00
|
|
|
TEST_CASE( "std::pair<int,std::string> -> toString", "[toString][pair]" ) {
|
2014-09-01 19:09:37 +02:00
|
|
|
std::pair<int,std::string> value( 34, "xyzzy" );
|
2017-05-02 23:51:03 +02:00
|
|
|
REQUIRE( ::Catch::Detail::stringify( value ) == "{ 34, \"xyzzy\" }" );
|
2014-09-01 19:09:37 +02:00
|
|
|
}
|
|
|
|
|
2014-09-04 08:27:09 +02:00
|
|
|
TEST_CASE( "std::pair<int,const std::string> -> toString", "[toString][pair]" ) {
|
2014-09-01 19:09:37 +02:00
|
|
|
std::pair<int,const std::string> value( 34, "xyzzy" );
|
2017-05-02 23:51:03 +02:00
|
|
|
REQUIRE( ::Catch::Detail::stringify(value) == "{ 34, \"xyzzy\" }" );
|
2014-09-01 19:09:37 +02:00
|
|
|
}
|
|
|
|
|
2014-09-04 08:27:09 +02:00
|
|
|
TEST_CASE( "std::vector<std::pair<std::string,int> > -> toString", "[toString][pair]" ) {
|
2014-09-01 19:09:37 +02:00
|
|
|
std::vector<std::pair<std::string,int> > pr;
|
|
|
|
pr.push_back( std::make_pair("green", 55 ) );
|
2017-05-02 23:51:03 +02:00
|
|
|
REQUIRE( ::Catch::Detail::stringify( pr ) == "{ { \"green\", 55 } }" );
|
2014-09-01 19:09:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is pretty contrived - I figure if this works, anything will...
|
2014-09-04 08:27:09 +02:00
|
|
|
TEST_CASE( "pair<pair<int,const char *,pair<std::string,int> > -> toString", "[toString][pair]" ) {
|
2014-09-01 19:09:37 +02:00
|
|
|
typedef std::pair<int,const char *> left_t;
|
|
|
|
typedef std::pair<std::string,int> right_t;
|
|
|
|
|
|
|
|
left_t left( 42, "Arthur" );
|
|
|
|
right_t right( "Ford", 24 );
|
|
|
|
|
|
|
|
std::pair<left_t,right_t> pair( left, right );
|
2017-05-02 23:51:03 +02:00
|
|
|
REQUIRE( ::Catch::Detail::stringify( pair ) == "{ { 42, \"Arthur\" }, { \"Ford\", 24 } }" );
|
2014-09-01 19:09:37 +02:00
|
|
|
}
|