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

Go to the source code of this file.

Functions

 TEST_CASE ("unique_ptr to nullptr get returns nullptr", "[unique_ptr][nullptr]")
 
 TEST_CASE ("unique_ptr: operator bool", "[unique_ptr][bool]")
 

Function Documentation

◆ TEST_CASE() [1/2]

TEST_CASE ( "unique_ptr to nullptr get returns nullptr"  ,
""  [unique_ptr][nullptr] 
)

Definition at line 9 of file unique_ptr_access.cpp.

10  {
12  REQUIRE(nothing.get() == nullptr);
13  REQUIRE(!nothing);
14 
15  throwing::unique_ptr<int> nothing2(nullptr);
16  REQUIRE(nothing2.get() == nullptr);
17  REQUIRE(!nothing2);
18 }
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/2]

TEST_CASE ( "unique_ptr: operator bool"  ,
""  [unique_ptr][bool] 
)

Definition at line 20 of file unique_ptr_access.cpp.

20  : operator bool", "[unique_ptr][bool]") {
21  throwing::unique_ptr<int> nothing;
22  REQUIRE(!nothing);
23 
24  throwing::unique_ptr<int> something(new int);
25  REQUIRE(something);
26 }