throwing_ptr
Smart pointers that throw on dereference if null
Functions
unique_ptr_ostream.cpp File Reference

Go to the source code of this file.

Functions

 TEST_CASE ("unique_ptr operator<< prints stored ptr", "[unique_ptr][streams]")
 
 TEST_CASE ("unique_ptr to array operator<< prints stored ptr", "[unique_ptr][array][streams]")
 
 TEST_CASE ("unique_ptr operator<< prints nullptr", "[unique_ptr][streams][nullptr]")
 

Function Documentation

◆ TEST_CASE() [1/3]

TEST_CASE ( "unique_ptr operator<< prints stored ptr"  ,
""  [unique_ptr][streams] 
)

Definition at line 10 of file unique_ptr_ostream.cpp.

10  {
11  auto ptr = throwing::make_unique<int>();
12  std::stringstream ss_ptr;
13  ss_ptr << ptr.get();
14  std::stringstream ss_tptr;
15  ss_tptr << ptr;
16  REQUIRE(ss_tptr.str() == ss_ptr.str());
17 }

◆ TEST_CASE() [2/3]

TEST_CASE ( "unique_ptr to array operator<< prints stored ptr"  ,
""  [unique_ptr][array][streams] 
)

Definition at line 19 of file unique_ptr_ostream.cpp.

20  {
21  auto ptr = throwing::make_unique<int[]>(10);
22  std::stringstream ss_ptr;
23  ss_ptr << ptr.get();
24  std::stringstream ss_tptr;
25  ss_tptr << ptr;
26  REQUIRE(ss_tptr.str() == ss_ptr.str());
27 }

◆ TEST_CASE() [3/3]

TEST_CASE ( "unique_ptr operator<< prints nullptr"  ,
""  [unique_ptr][streams][nullptr] 
)

Definition at line 29 of file unique_ptr_ostream.cpp.

30  {
32  std::stringstream ss_ptr;
33  ss_ptr << ptr.get();
34  std::stringstream ss_tptr;
35  ss_tptr << ptr;
36  REQUIRE(ss_tptr.str() == ss_ptr.str());
37 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
pointer get() const TSP_NOEXCEPT
Returns a pointer to the managed object or nullptr if no object is owned.
Definition: unique_ptr.hpp:257