Lines Matching refs:Detail
63 REQUIRE( Catch::Detail::stringify( emptyMap ) == "{ }" );
69 REQUIRE( Catch::Detail::stringify( map ) == "{ { \"one\", 1 } }" );
79 …REQUIRE( Catch::Detail::stringify( map ) == "{ { \"abc\", 1 }, { \"def\", 2 }, { \"ghi\", 3 } }" );
88 REQUIRE( Catch::Detail::stringify( emptySet ) == "{ }" );
94 REQUIRE( Catch::Detail::stringify( set ) == "{ \"one\" }" );
100 REQUIRE( Catch::Detail::stringify( set ) == "{ \"abc\", \"def\", \"ghi\" }" );
107 REQUIRE(Catch::Detail::stringify(singular) == "{ 1 }");
111 REQUIRE(Catch::Detail::stringify(arr) == "{ 3, 2, 1 }");
115 … REQUIRE(Catch::Detail::stringify(arr) == R"({ { "1:1", "1:2", "1:3" }, { "2:1", "2:2" } })");
123 CHECK(Catch::Detail::stringify(view) == R"("abc")");
126 CHECK(Catch::Detail::stringify(arr) == R"({ "abc" })");
207 …REQUIRE(::Catch::Detail::stringify(WhatException{}) == "This exception has overridden what() metho…
208 REQUIRE(::Catch::Detail::stringify(OperatorException{}) == "OperatorException");
209 REQUIRE(::Catch::Detail::stringify(StringMakerException{}) == "StringMakerException");