8 #include <throwing/unique_ptr.hpp> 10 TEST_CASE(
"unique_ptr operator<< prints stored ptr",
"[unique_ptr][streams]") {
11 auto ptr = throwing::make_unique<
int>();
12 std::stringstream ss_ptr;
14 std::stringstream ss_tptr;
16 REQUIRE(ss_tptr.str() == ss_ptr.str());
19 TEST_CASE(
"unique_ptr to array operator<< prints stored ptr",
20 "[unique_ptr][array][streams]") {
21 auto ptr = throwing::make_unique<
int[]>(10);
22 std::stringstream ss_ptr;
24 std::stringstream ss_tptr;
26 REQUIRE(ss_tptr.str() == ss_ptr.str());
29 TEST_CASE(
"unique_ptr operator<< prints nullptr",
30 "[unique_ptr][streams][nullptr]") {
31 throwing::unique_ptr<
int> ptr;
32 std::stringstream ss_ptr;
34 std::stringstream ss_tptr;
36 REQUIRE(ss_tptr.str() == ss_ptr.str());
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")