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

Go to the source code of this file.

Functions

 TEST_CASE ("move assignment from std::unique_ptr to array of convertible " "type to std::unique_ptr", "[unique_ptr][assignment][array][conv.qual]")
 
 TEST_CASE ("move assignment from throwing::unique_ptr to array of convertible " "type to throwing::unique_ptr", "[unique_ptr][assignment][array][conv.qual]")
 
 TEST_CASE ("move assignment from std::unique_ptr to array of convertible " "type to throwing::unique_ptr", "[unique_ptr][assignment][array][conv.qual]")
 

Function Documentation

◆ TEST_CASE() [1/3]

TEST_CASE ( "move assignment from std::unique_ptr to array of convertible " "type to std::unique_ptr"  ,
""  [unique_ptr][assignment][array][conv.qual] 
)

Definition at line 27 of file unique_ptr_to_array_assignment_from_convertible.cpp.

29  {
30  const A *p1 = new A[10];
31  std::unique_ptr<const A[]> t_ptr1(p1);
32  A *p2 = new A[10];
33  std::unique_ptr<A[]> t_ptr2(p2);
34  t_ptr1 = std::move(t_ptr2);
35  REQUIRE(t_ptr1.get() == p2);
36  REQUIRE(!t_ptr2);
37 }

◆ TEST_CASE() [2/3]

TEST_CASE ( "move assignment from throwing::unique_ptr to array of convertible " "type to throwing::unique_ptr ,
""  [unique_ptr][assignment][array][conv.qual] 
)

Definition at line 39 of file unique_ptr_to_array_assignment_from_convertible.cpp.

41  {
42  const A *p1 = new A[10];
44  A *p2 = new A[10];
45  throwing::unique_ptr<A[]> t_ptr2(p2);
46  t_ptr1 = std::move(t_ptr2);
47  REQUIRE(t_ptr1.get() == p2);
48  REQUIRE(!t_ptr2);
49 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38

◆ TEST_CASE() [3/3]

TEST_CASE ( "move assignment from std::unique_ptr to array of convertible " "type to throwing::unique_ptr ,
""  [unique_ptr][assignment][array][conv.qual] 
)

Definition at line 51 of file unique_ptr_to_array_assignment_from_convertible.cpp.

53  {
54  const A *p1 = new A[10];
56  A *p2 = new A[10];
57  std::unique_ptr<A[]> t_ptr2(p2);
58  t_ptr1 = std::move(t_ptr2);
59  REQUIRE(t_ptr1.get() == p2);
60  REQUIRE(!t_ptr2);
61 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38