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

Go to the source code of this file.

Functions

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

Function Documentation

◆ TEST_CASE() [1/3]

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

Definition at line 27 of file unique_ptr_to_array_assignment.cpp.

28  {
29  A *ptr1 = new A[10];
30  throwing::unique_ptr<A[]> t_ptr1(ptr1);
32  t_ptr2 = std::move(t_ptr1);
33  REQUIRE(t_ptr2.get() == ptr1);
34  REQUIRE(t_ptr1.get() == nullptr);
35 }
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/3]

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

Definition at line 37 of file unique_ptr_to_array_assignment.cpp.

38  {
39  A *ptr1 = new A[10];
40  std::unique_ptr<A[]> t_ptr1(ptr1);
42  t_ptr2 = std::move(t_ptr1);
43  REQUIRE(t_ptr2.get() == ptr1);
44  REQUIRE(t_ptr1.get() == nullptr);
45 }
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/3]

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

Definition at line 47 of file unique_ptr_to_array_assignment.cpp.

48  {
49  throwing::unique_ptr<A[], DeleterA> t_ptr(new A[10]);
50  REQUIRE(t_ptr.get());
51  t_ptr = nullptr;
52  REQUIRE_FALSE(t_ptr.get());
53  REQUIRE(t_ptr.get_deleter().called);
54 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38