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

Go to the source code of this file.

Functions

 TEST_CASE ("shared_ptr swap swaps pointers", "[shared_ptr][swap]")
 
 TEST_CASE ("shared_ptr swap null pointers", "[shared_ptr][swap][nullptr]")
 

Function Documentation

◆ TEST_CASE() [1/2]

TEST_CASE ( "shared_ptr swap swaps pointers"  ,
""  [shared_ptr][swap] 
)

Definition at line 9 of file shared_ptr_swap.cpp.

9  {
10  int *ptr1 = new int;
11  throwing::shared_ptr<int> t_ptr1(ptr1);
12  int *ptr2 = new int;
13  throwing::shared_ptr<int> t_ptr2(ptr2);
14  REQUIRE(t_ptr1.get() == ptr1);
15  REQUIRE(t_ptr2.get() == ptr2);
16  t_ptr1.swap(t_ptr2);
17  REQUIRE(t_ptr1.get() == ptr2);
18  REQUIRE(t_ptr2.get() == ptr1);
19  std::swap(t_ptr1, t_ptr2);
20  REQUIRE(t_ptr1.get() == ptr1);
21  REQUIRE(t_ptr2.get() == ptr2);
22 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
void swap(throwing::shared_ptr< T > &lhs, throwing::shared_ptr< T > &rhs) TSP_NOEXCEPT
Specializes the std::swap algorithm for throwing::shared_ptr.
Definition: shared_ptr.hpp:536

◆ TEST_CASE() [2/2]

TEST_CASE ( "shared_ptr swap null pointers"  ,
""  [shared_ptr][swap][nullptr] 
)

Definition at line 24 of file shared_ptr_swap.cpp.

24  {
27  REQUIRE(t_ptr1.get() == nullptr);
28  REQUIRE(t_ptr2.get() == nullptr);
29  t_ptr1.swap(t_ptr2);
30  REQUIRE(t_ptr1.get() == nullptr);
31  REQUIRE(t_ptr2.get() == nullptr);
32  std::swap(t_ptr1, t_ptr2);
33  REQUIRE(t_ptr1.get() == nullptr);
34  REQUIRE(t_ptr2.get() == nullptr);
35 }
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
void swap(shared_ptr &r) TSP_NOEXCEPT
Exchanges the contents of *this and r.
Definition: shared_ptr.hpp:344
void swap(throwing::shared_ptr< T > &lhs, throwing::shared_ptr< T > &rhs) TSP_NOEXCEPT
Specializes the std::swap algorithm for throwing::shared_ptr.
Definition: shared_ptr.hpp:536