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

Go to the source code of this file.

Functions

 TEST_CASE ("unique_ptr to array: get on null returns nullptr", "[unique_ptr][array][nullptr][access]")
 
 TEST_CASE ("unique_ptr to array: get returns first element", "[unique_ptr][array][access]")
 
 TEST_CASE ("unique_ptr to array: dereferencing nullptr throws", "[unique_ptr][array][access][nullptr]")
 
 TEST_CASE ("unique_ptr to array: [0] returns first element", "[unique_ptr][array][access]")
 
 TEST_CASE ("unique_ptr to array: operator bool", "[unique_ptr][array][bool]")
 

Function Documentation

◆ TEST_CASE() [1/5]

TEST_CASE ( "unique_ptr to array: get on null returns nullptr"  ,
""  [unique_ptr][array][nullptr][access] 
)

Definition at line 15 of file unique_ptr_to_array_access.cpp.

15  : get on null returns nullptr",
16  "[unique_ptr][array][nullptr][access]") {
17  throwing::unique_ptr<int[]> nothing;
18  REQUIRE(nothing.get() == nullptr);
19  REQUIRE(!nothing);
20 
21  throwing::unique_ptr<int[]> nothing_nullptr(nullptr);
22  REQUIRE(nothing.get() == nullptr);
23  REQUIRE(!nothing);
24 }

◆ TEST_CASE() [2/5]

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

Definition at line 26 of file unique_ptr_to_array_access.cpp.

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

◆ TEST_CASE() [3/5]

TEST_CASE ( "unique_ptr to array: dereferencing nullptr throws"  ,
""  [unique_ptr][array][access][nullptr] 
)

Definition at line 33 of file unique_ptr_to_array_access.cpp.

33  : dereferencing nullptr throws",
34  "[unique_ptr][array][access][nullptr]") {
35  throwing::unique_ptr<Foo[]> nothing;
36  REQUIRE_THROWS_AS(nothing[0], throwing::base_null_ptr_exception);
37  REQUIRE_THROWS_AS(nothing[0], throwing::null_ptr_exception<Foo>);
38 }

◆ TEST_CASE() [4/5]

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

Definition at line 40 of file unique_ptr_to_array_access.cpp.

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

◆ TEST_CASE() [5/5]

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

Definition at line 47 of file unique_ptr_to_array_access.cpp.

47  : operator bool", "[unique_ptr][array][bool]") {
48  throwing::unique_ptr<int[]> nothing;
49  REQUIRE(!nothing);
50 
51  throwing::unique_ptr<int[]> something(new int[10]);
52  REQUIRE(something);
53 }