ToStringPair.tests.cpp 1.2 KB

123456789101112131415161718192021222324252627282930
  1. #define CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER
  2. #include "catch.hpp"
  3. TEST_CASE( "std::pair<int,std::string> -> toString", "[toString][pair]" ) {
  4. std::pair<int,std::string> value( 34, "xyzzy" );
  5. REQUIRE( ::Catch::Detail::stringify( value ) == "{ 34, \"xyzzy\" }" );
  6. }
  7. TEST_CASE( "std::pair<int,const std::string> -> toString", "[toString][pair]" ) {
  8. std::pair<int,const std::string> value( 34, "xyzzy" );
  9. REQUIRE( ::Catch::Detail::stringify(value) == "{ 34, \"xyzzy\" }" );
  10. }
  11. TEST_CASE( "std::vector<std::pair<std::string,int> > -> toString", "[toString][pair]" ) {
  12. std::vector<std::pair<std::string,int> > pr;
  13. pr.push_back( std::make_pair("green", 55 ) );
  14. REQUIRE( ::Catch::Detail::stringify( pr ) == "{ { \"green\", 55 } }" );
  15. }
  16. // This is pretty contrived - I figure if this works, anything will...
  17. TEST_CASE( "pair<pair<int,const char *,pair<std::string,int> > -> toString", "[toString][pair]" ) {
  18. typedef std::pair<int,const char *> left_t;
  19. typedef std::pair<std::string,int> right_t;
  20. left_t left( 42, "Arthur" );
  21. right_t right( "Ford", 24 );
  22. std::pair<left_t,right_t> pair( left, right );
  23. REQUIRE( ::Catch::Detail::stringify( pair ) == "{ { 42, \"Arthur\" }, { \"Ford\", 24 } }" );
  24. }