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

Go to the source code of this file.

Functions

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

Function Documentation

◆ TEST_CASE() [1/4]

TEST_CASE ( "move assignment from throwing::unique_ptr ,
""  [unique_ptr][assignment] 
)

Definition at line 34 of file unique_ptr_assignment.cpp.

35  {
36  A *ptr1 = new A;
37  throwing::unique_ptr<A> t_ptr1(ptr1);
39  t_ptr2 = std::move(t_ptr1);
40  REQUIRE(t_ptr2.get() == ptr1);
41  REQUIRE(t_ptr1.get() == nullptr);
42 }
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

◆ TEST_CASE() [2/4]

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

Definition at line 44 of file unique_ptr_assignment.cpp.

45  {
46  B *ptr1 = new B;
47  throwing::unique_ptr<B> t_ptr1(ptr1);
49  t_ptr2 = std::move(t_ptr1);
50  REQUIRE(t_ptr2.get() == ptr1);
51  REQUIRE(t_ptr1.get() == nullptr);
52 }
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

◆ TEST_CASE() [3/4]

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

Definition at line 54 of file unique_ptr_assignment.cpp.

55  {
56  B *ptr1 = new B;
57  std::unique_ptr<B> t_ptr1(ptr1);
59  t_ptr2 = std::move(t_ptr1);
60  REQUIRE(t_ptr2.get() == ptr1);
61  REQUIRE(t_ptr1.get() == nullptr);
62 }
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

◆ TEST_CASE() [4/4]

TEST_CASE ( "assignment from nullptr"  ,
""  [unique_ptr][assignment][nullptr] 
)

Definition at line 64 of file unique_ptr_assignment.cpp.

64  {
66  REQUIRE(t_ptr.get());
67  t_ptr = nullptr;
68  REQUIRE_FALSE(t_ptr.get());
69  REQUIRE(t_ptr.get_deleter().called);
70 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38