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

Go to the source code of this file.

Functions

 TEST_CASE ("unique_ptr to single object reset", "[unique_ptr][reset]")
 
 TEST_CASE ("unique_ptr to single object reset with nullptr", "[unique_ptr][reset][nullptr]")
 
 TEST_CASE ("unique_ptr to array reset", "[unique_ptr][array][reset]")
 
 TEST_CASE ("unique_ptr to array reset with nullptr", "[unique_ptr][reset][nullptr]")
 

Function Documentation

◆ TEST_CASE() [1/4]

TEST_CASE ( "unique_ptr to single object reset"  ,
""  [unique_ptr][reset] 
)

Definition at line 28 of file unique_ptr_reset.cpp.

29  {
31  REQUIRE(uptr.get());
32  REQUIRE(!uptr.get_deleter().called);
33  uptr.reset(new int);
34  REQUIRE(uptr.get());
35  REQUIRE(uptr.get_deleter().called);
36 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38

◆ TEST_CASE() [2/4]

TEST_CASE ( "unique_ptr to single object reset with nullptr"  ,
""  [unique_ptr][reset][nullptr] 
)

Definition at line 38 of file unique_ptr_reset.cpp.

39  {
41  REQUIRE(uptr.get());
42  REQUIRE(!uptr.get_deleter().called);
43  uptr.reset(nullptr);
44  REQUIRE(!uptr.get());
45  REQUIRE(uptr.get_deleter().called);
46 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38

◆ TEST_CASE() [3/4]

TEST_CASE ( "unique_ptr to array reset"  ,
""  [unique_ptr][array][reset] 
)

Definition at line 48 of file unique_ptr_reset.cpp.

49  {
51  REQUIRE(uptr.get());
52  REQUIRE(!uptr.get_deleter().called);
53  uptr.reset(new int[10]);
54  REQUIRE(uptr.get());
55  REQUIRE(uptr.get_deleter().called);
56 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38

◆ TEST_CASE() [4/4]

TEST_CASE ( "unique_ptr to array reset with nullptr"  ,
""  [unique_ptr][reset][nullptr] 
)

Definition at line 58 of file unique_ptr_reset.cpp.

59  {
61  REQUIRE(uptr.get());
62  REQUIRE(!uptr.get_deleter().called);
63  uptr.reset(nullptr);
64  REQUIRE(!uptr.get());
65  REQUIRE(uptr.get_deleter().called);
66 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38