#include "catch.hpp" #include // vedctor TEST_CASE( "vector -> toString", "[toString][vector]" ) { std::vector vv; REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" ); vv.push_back( 42 ); REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42 }" ); vv.push_back( 250 ); REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42, 250 }" ); } TEST_CASE( "vector -> toString", "[toString][vector]" ) { std::vector vv; REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" ); vv.push_back( "hello" ); REQUIRE( ::Catch::Detail::stringify(vv) == "{ \"hello\" }" ); vv.push_back( "world" ); REQUIRE( ::Catch::Detail::stringify(vv) == "{ \"hello\", \"world\" }" ); } namespace { /* Minimal Allocator */ template struct minimal_allocator { using value_type = T; using size_type = std::size_t; minimal_allocator() = default; template minimal_allocator(const minimal_allocator&) {} T *allocate( size_type n ) { return static_cast( ::operator new( n * sizeof(T) ) ); } void deallocate( T *p, size_type /*n*/ ) { ::operator delete( static_cast(p) ); } template bool operator==( const minimal_allocator& ) const { return true; } template bool operator!=( const minimal_allocator& ) const { return false; } }; } TEST_CASE( "vector -> toString", "[toString][vector,allocator]" ) { std::vector > vv; REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" ); vv.push_back( 42 ); REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42 }" ); vv.push_back( 250 ); REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42, 250 }" ); } TEST_CASE( "vec> -> toString", "[toString][vector,allocator]" ) { using inner = std::vector>; using vector = std::vector; vector v; REQUIRE( ::Catch::Detail::stringify(v) == "{ }" ); v.push_back( inner { "hello" } ); v.push_back( inner { "world" } ); REQUIRE( ::Catch::Detail::stringify(v) == "{ { \"hello\" }, { \"world\" } }" ); }