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

Go to the source code of this file.

Functions

 TEST_CASE ("unique_ptr swap swaps pointers", "[unique_ptr][swap]")
 
 TEST_CASE ("unique_ptr swap null pointers", "[unique_ptr][swap][nullptr]")
 
 TEST_CASE ("unique_ptr to array swap swaps pointers", "[unique_ptr][array][swap]")
 
 TEST_CASE ("unique_ptr to array swap null pointers", "[unique_ptr][array][swap][nullptr]")
 

Function Documentation

◆ TEST_CASE() [1/4]

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

Definition at line 9 of file unique_ptr_swap.cpp.

9  {
10  int *ptr1 = new int;
11  throwing::unique_ptr<int> t_ptr1(ptr1);
12  int *ptr2 = new int;
13  throwing::unique_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 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
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/4]

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

Definition at line 24 of file unique_ptr_swap.cpp.

24  {
25  throwing::unique_ptr<int> t_ptr1(new int);
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 }
void swap(unique_ptr &other) TSP_NOEXCEPT
Swaps the managed objects and associated deleters of *this and another unique_ptr object other...
Definition: unique_ptr.hpp:252
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
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() [3/4]

TEST_CASE ( "unique_ptr to array swap swaps pointers"  ,
""  [unique_ptr][array][swap] 
)

Definition at line 37 of file unique_ptr_swap.cpp.

38  {
39  int *ptr1 = new int;
40  throwing::unique_ptr<int> t_ptr1(ptr1);
41  int *ptr2 = new int;
42  throwing::unique_ptr<int> t_ptr2(ptr2);
43  REQUIRE(t_ptr1.get() == ptr1);
44  REQUIRE(t_ptr2.get() == ptr2);
45  t_ptr1.swap(t_ptr2);
46  REQUIRE(t_ptr1.get() == ptr2);
47  REQUIRE(t_ptr2.get() == ptr1);
48  std::swap(t_ptr1, t_ptr2);
49  REQUIRE(t_ptr1.get() == ptr1);
50  REQUIRE(t_ptr2.get() == ptr2);
51 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
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() [4/4]

TEST_CASE ( "unique_ptr to array swap null pointers"  ,
""  [unique_ptr][array][swap][nullptr] 
)

Definition at line 53 of file unique_ptr_swap.cpp.

54  {
55  throwing::unique_ptr<int[]> t_ptr1(new int[10]);
57  REQUIRE(t_ptr1.get() != nullptr);
58  REQUIRE(t_ptr2.get() == nullptr);
59  t_ptr1.swap(t_ptr2);
60  REQUIRE(t_ptr1.get() == nullptr);
61  REQUIRE(t_ptr2.get() != nullptr);
62  std::swap(t_ptr1, t_ptr2);
63  REQUIRE(t_ptr1.get() != nullptr);
64  REQUIRE(t_ptr2.get() == nullptr);
65 }
void swap(unique_ptr &other) TSP_NOEXCEPT
Swaps the managed objects and associated deleters of *this and another unique_ptr object other...
Definition: unique_ptr.hpp:252
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
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