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

Go to the source code of this file.

Functions

 TEST_CASE ("shared_ptr to array from nullptr: get returns nullptr", "[shared_ptr][array][access]")
 
 TEST_CASE ("shared_ptr to array: get returns first element", "[shared_ptr][array][access]")
 
 TEST_CASE ("dereferencing null shared_ptr to array throws", "[shared_ptr][array][access]")
 
 TEST_CASE ("shared_ptr to array: [0] returns first element", "[shared_ptr][array][access]")
 

Function Documentation

◆ TEST_CASE() [1/4]

TEST_CASE ( "shared_ptr to array from nullptr: get returns nullptr"  ,
""  [shared_ptr][array][access] 
)

Definition at line 15 of file shared_ptr_to_array.cpp.

15  : get returns nullptr",
16  "[shared_ptr][array][access]") {
17  throwing::shared_ptr<int[10]> nothing;
18  REQUIRE(nothing.get() == nullptr);
19 
20  throwing::shared_ptr<int[10]> nothing_nullptr(nullptr);
21  REQUIRE(nothing.get() == nullptr);
22 
23  throwing::shared_ptr<int[10]> nothing_null(NULL);
24  REQUIRE(nothing.get() == nullptr);
25 }

◆ TEST_CASE() [2/4]

TEST_CASE ( "shared_ptr to array: get returns first element"  ,
""  [shared_ptr][array][access] 
)

Definition at line 27 of file shared_ptr_to_array.cpp.

27  : get returns first element",
28  "[shared_ptr][array][access]") {
29  int *ptr = new int[10];
30  throwing::shared_ptr<int[10]> t_ptr(ptr);
31  REQUIRE(t_ptr.get() == ptr);
32 }

◆ TEST_CASE() [3/4]

TEST_CASE ( "dereferencing null shared_ptr to array throws"  ,
""  [shared_ptr][array][access] 
)

Definition at line 34 of file shared_ptr_to_array.cpp.

35  {
37  REQUIRE_THROWS_AS(nothing[0], throwing::base_null_ptr_exception);
38  REQUIRE_THROWS_AS(nothing[0], throwing::null_ptr_exception<Foo[100]>);
39 }
Base class thrown upon dereferencing a null shared_ptr.
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [4/4]

TEST_CASE ( "shared_ptr to array: returns first element"  [0],
""  [shared_ptr][array][access] 
)

Definition at line 41 of file shared_ptr_to_array.cpp.

41  : [0] returns first element",
42  "[shared_ptr][array][access]") {
43  int *ptr = new int[10];
44  throwing::shared_ptr<int[10]> t_ptr(ptr);
45  REQUIRE(&t_ptr[0] == ptr);
46 }