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

Go to the source code of this file.

Functions

 TEST_CASE ("unique_ptr dereference via * throws on nullptr", "[unique_ptr][dereference][nullptr]")
 
 TEST_CASE ("unique_ptr dereference via -> throws on nullptr", "[unique_ptr][dereference][nullptr]")
 
 TEST_CASE ("type specific unique_ptr exceptions are caught by base exception", "[unique_ptr][exception]")
 
 TEST_CASE ("type specific unique_ptr exceptions are caught by using correct type", "[unique_ptr][exception]")
 
 TEST_CASE ("unique_ptr exceptions have non-empty what()", "[unique_ptr][exception]")
 

Function Documentation

◆ TEST_CASE() [1/5]

TEST_CASE ( "unique_ptr dereference via * throws on nullptr"  ,
""  [unique_ptr][dereference][nullptr] 
)

Definition at line 16 of file unique_ptr_dereference.cpp.

17  {
19  REQUIRE_THROWS_AS((*nothing)++, throwing::base_null_ptr_exception);
20  REQUIRE_THROWS_AS((*nothing)++, throwing::null_ptr_exception<int>);
21 }
Base class thrown upon dereferencing a null shared_ptr.
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [2/5]

TEST_CASE ( "unique_ptr dereference via -> throws on nullptr"  ,
""  [unique_ptr][dereference][nullptr] 
)

Definition at line 23 of file unique_ptr_dereference.cpp.

24  {
26  REQUIRE_THROWS_AS(nothing->foo(), throwing::base_null_ptr_exception);
27  REQUIRE_THROWS_AS(nothing->foo(), throwing::null_ptr_exception<Foo>);
28 }
Base class thrown upon dereferencing a null shared_ptr.
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [3/5]

TEST_CASE ( "type specific unique_ptr exceptions are caught by base exception"  ,
""  [unique_ptr][exception] 
)

Definition at line 30 of file unique_ptr_dereference.cpp.

31  {
33  try {
34  (*nothing)++;
35  } catch (const throwing::null_ptr_exception<float> &) {
36  FAIL();
37  } catch (const throwing::base_null_ptr_exception &e) {
38  REQUIRE(std::string(e.what()) == "Dereference of nullptr");
39  }
40 }
Base class thrown upon dereferencing a null shared_ptr.
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [4/5]

TEST_CASE ( "type specific unique_ptr exceptions are caught by using correct type"  ,
""  [unique_ptr][exception] 
)

Definition at line 42 of file unique_ptr_dereference.cpp.

44  {
46  try {
47  (*nothing)++;
48  } catch (const throwing::null_ptr_exception<float> &) {
49  FAIL();
50  } catch (const throwing::null_ptr_exception<int> &) {
51  }
52 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [5/5]

TEST_CASE ( "unique_ptr exceptions have non-empty what()"  ,
""  [unique_ptr][exception] 
)

Definition at line 54 of file unique_ptr_dereference.cpp.

55  {
57  try {
58  (*nothing)++;
59  } catch (const throwing::base_null_ptr_exception &e) {
60  std::string what = e.what_type();
61  REQUIRE_FALSE(what.empty());
62  }
63 }
Base class thrown upon dereferencing a null shared_ptr.
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38
virtual std::string what_type() const