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

Go to the source code of this file.

Functions

 TEST_CASE ("assignment from throwing::shared_ptr", "[shared_ptr][assignment]")
 
 TEST_CASE ("assignment from std::shared_ptr", "[shared_ptr][assignment]")
 
 TEST_CASE ("assignment from throwing::shared_ptr to derived class", "[shared_ptr][assignment]")
 
 TEST_CASE ("assignment from std::shared_ptr to derived class", "[shared_ptr][assignment]")
 
 TEST_CASE ("move assignment from throwing::shared_ptr to derived class", "[shared_ptr][assignment]")
 
 TEST_CASE ("move assignment from std::shared_ptr to derived class", "[shared_ptr][assignment]")
 

Function Documentation

◆ TEST_CASE() [1/6]

TEST_CASE ( "assignment from throwing::shared_ptr ,
""  [shared_ptr][assignment] 
)

Definition at line 26 of file shared_ptr_assignment.cpp.

26  {
27  A *ptr1 = new A;
28  throwing::shared_ptr<A> t_ptr1(ptr1);
30  t_ptr2 = t_ptr1;
31  REQUIRE(t_ptr2.get() == t_ptr1.get());
32  t_ptr1.reset();
33  REQUIRE(t_ptr1.get() == nullptr);
34  REQUIRE(t_ptr2.get() == ptr1);
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 reset() TSP_NOEXCEPT
Releases the ownership of the managed object, if any.
Definition: shared_ptr.hpp:356

◆ TEST_CASE() [2/6]

TEST_CASE ( "assignment from std::shared_ptr"  ,
""  [shared_ptr][assignment] 
)

Definition at line 37 of file shared_ptr_assignment.cpp.

37  {
38  A *ptr1 = new A;
39  std::shared_ptr<A> t_ptr1(ptr1);
41  t_ptr2 = t_ptr1;
42  REQUIRE(t_ptr2.get() == t_ptr1.get());
43  t_ptr1.reset();
44  REQUIRE(t_ptr1.get() == nullptr);
45  REQUIRE(t_ptr2.get() == ptr1);
46 }
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 reset() TSP_NOEXCEPT
Releases the ownership of the managed object, if any.
Definition: shared_ptr.hpp:356

◆ TEST_CASE() [3/6]

TEST_CASE ( "assignment from throwing::shared_ptr to derived class"  ,
""  [shared_ptr][assignment] 
)

Definition at line 48 of file shared_ptr_assignment.cpp.

49  {
50  throwing::shared_ptr<B> t_ptr1(new B);
52  t_ptr2 = t_ptr1;
53  REQUIRE(t_ptr2.get() == t_ptr1.get());
54 }
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

◆ TEST_CASE() [4/6]

TEST_CASE ( "assignment from std::shared_ptr to derived class"  ,
""  [shared_ptr][assignment] 
)

Definition at line 56 of file shared_ptr_assignment.cpp.

57  {
58  std::shared_ptr<B> t_ptr1(new B);
60  t_ptr2 = t_ptr1;
61  REQUIRE(t_ptr2.get() == t_ptr1.get());
62 }
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

◆ TEST_CASE() [5/6]

TEST_CASE ( "move assignment from throwing::shared_ptr to derived class"  ,
""  [shared_ptr][assignment] 
)

Definition at line 64 of file shared_ptr_assignment.cpp.

65  {
66  B *ptr = new B;
67  throwing::shared_ptr<B> t_ptr1(ptr);
69  t_ptr2 = std::move(t_ptr1);
70  REQUIRE(t_ptr1.get() == nullptr);
71  REQUIRE(t_ptr2.get() == ptr);
72 }
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

◆ TEST_CASE() [6/6]

TEST_CASE ( "move assignment from std::shared_ptr to derived class"  ,
""  [shared_ptr][assignment] 
)

Definition at line 74 of file shared_ptr_assignment.cpp.

75  {
76  B *ptr = new B;
77  std::shared_ptr<B> t_ptr1(ptr);
79  t_ptr2 = std::move(t_ptr1);
80  REQUIRE(t_ptr1.get() == nullptr);
81  REQUIRE(t_ptr2.get() == ptr);
82 }
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