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

Go to the source code of this file.

Functions

 TEST_CASE ("static_pointer_cast to base class", "[shared_ptr][cast]")
 
 TEST_CASE ("dynamic_pointer_cast to derived class", "[shared_ptr][cast]")
 
 TEST_CASE ("const_pointer_cast", "[shared_ptr][cast]")
 
 TEST_CASE ("reinterpret_pointer_cast", "[shared_ptr][cast]")
 

Function Documentation

◆ TEST_CASE() [1/4]

TEST_CASE ( "static_pointer_cast to base class"  ,
""  [shared_ptr][cast] 
)

Definition at line 29 of file shared_ptr_cast.cpp.

29  {
30  auto base_ptr = throwing::make_shared<Base>();
31  REQUIRE_FALSE(base_ptr->is_derived());
32  auto derived_ptr = throwing::make_shared<Derived>();
33  REQUIRE(derived_ptr->is_derived());
34 
35  // static_pointer_cast to go up class hierarchy
36  base_ptr = throwing::static_pointer_cast<Base>(derived_ptr);
37  REQUIRE(derived_ptr->is_derived());
38 }
shared_ptr< T > static_pointer_cast(const shared_ptr< U > &r) TSP_NOEXCEPT
Creates a new instance of shared_ptr whose stored pointer is obtained from r&#39;s stored pointer using a...
Definition: shared_ptr.hpp:599

◆ TEST_CASE() [2/4]

TEST_CASE ( "dynamic_pointer_cast to derived class"  ,
""  [shared_ptr][cast] 
)

Definition at line 40 of file shared_ptr_cast.cpp.

40  {
41  auto base_ptr = throwing::make_shared<Base>();
42  REQUIRE_FALSE(base_ptr->is_derived());
43  auto derived_ptr = throwing::make_shared<Derived>();
44  REQUIRE(derived_ptr->is_derived());
45 
46  // static_pointer_cast to go up class hierarchy
47  base_ptr = throwing::static_pointer_cast<Base>(derived_ptr);
48 
49  // dynamic_pointer_cast to go down/across class hierarchy
50  auto downcast_ptr = throwing::dynamic_pointer_cast<Derived>(base_ptr);
51  REQUIRE(downcast_ptr);
52  REQUIRE(downcast_ptr->is_derived());
53 }
shared_ptr< T > static_pointer_cast(const shared_ptr< U > &r) TSP_NOEXCEPT
Creates a new instance of shared_ptr whose stored pointer is obtained from r&#39;s stored pointer using a...
Definition: shared_ptr.hpp:599
shared_ptr< T > dynamic_pointer_cast(const shared_ptr< U > &r) TSP_NOEXCEPT
Creates a new instance of shared_ptr whose stored pointer is obtained from r&#39;s stored pointer using a...
Definition: shared_ptr.hpp:618

◆ TEST_CASE() [3/4]

TEST_CASE ( "const_pointer_cast"  ,
""  [shared_ptr][cast] 
)

Definition at line 55 of file shared_ptr_cast.cpp.

55  {
56  const auto const_ptr = throwing::make_shared<Base>();
57  auto non_const_ptr = throwing::const_pointer_cast<Base>(const_ptr);
58  REQUIRE(non_const_ptr->mutating());
59 }
shared_ptr< T > const_pointer_cast(const shared_ptr< U > &r) TSP_NOEXCEPT
Creates a new instance of shared_ptr whose stored pointer is obtained from r&#39;s stored pointer using a...
Definition: shared_ptr.hpp:638

◆ TEST_CASE() [4/4]

TEST_CASE ( "reinterpret_pointer_cast"  ,
""  [shared_ptr][cast] 
)

Definition at line 61 of file shared_ptr_cast.cpp.

61  {
62  auto p = throwing::make_shared<Reintepretable>();
63  REQUIRE(p);
64  auto reinterpreted = throwing::reinterpret_pointer_cast<int>(p);
65  REQUIRE(reinterpreted);
66  REQUIRE(p.use_count() == 2);
67 }
shared_ptr< T > reinterpret_pointer_cast(const shared_ptr< U > &r) TSP_NOEXCEPT
Creates a new instance of shared_ptr whose stored pointer is obtained from r&#39;s stored pointer using a...
Definition: shared_ptr.hpp:655