Go to the source code of this file.
|
| 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]") |
|
◆ 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.
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());
37 REQUIRE(derived_ptr->is_derived());
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's stored pointer using a...
◆ 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.
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());
51 REQUIRE(downcast_ptr);
52 REQUIRE(downcast_ptr->is_derived());
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's stored pointer using a...
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's stored pointer using a...
◆ TEST_CASE() [3/4]
TEST_CASE |
( |
"const_pointer_cast" |
, |
|
|
"" |
[shared_ptr][cast] |
|
) |
| |
Definition at line 55 of file shared_ptr_cast.cpp.
56 const auto const_ptr = throwing::make_shared<Base>();
58 REQUIRE(non_const_ptr->mutating());
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's stored pointer using a...
◆ TEST_CASE() [4/4]
TEST_CASE |
( |
"reinterpret_pointer_cast" |
, |
|
|
"" |
[shared_ptr][cast] |
|
) |
| |
Definition at line 61 of file shared_ptr_cast.cpp.
62 auto p = throwing::make_shared<Reintepretable>();
65 REQUIRE(reinterpreted);
66 REQUIRE(p.use_count() == 2);
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's stored pointer using a...