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

Go to the source code of this file.

Functions

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

Function Documentation

◆ TEST_CASE() [1/2]

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

Definition at line 10 of file shared_ptr_ostream.cpp.

10  {
11  auto ptr = throwing::make_shared<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/2]

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

Definition at line 19 of file shared_ptr_ostream.cpp.

19  {
21  std::stringstream ss_ptr;
22  ss_ptr << ptr.get();
23  std::stringstream ss_tptr;
24  ss_tptr << ptr;
25  REQUIRE(ss_tptr.str() == ss_ptr.str());
26 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
element_type * get() const TSP_NOEXCEPT
Returns the stored pointer.
Definition: shared_ptr.hpp:407