7 #include <throwing/shared_ptr.hpp> 12 virtual ~Base() =
default;
13 virtual bool mutating() {
return true; }
14 virtual bool is_derived()
const {
return false; }
17 class Derived :
public Base {
19 virtual ~Derived() =
default;
20 virtual bool is_derived()
const {
return true; }
23 struct Reintepretable {
29 TEST_CASE(
"static_pointer_cast to base class",
"[shared_ptr][cast]") {
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());
36 base_ptr = throwing::static_pointer_cast<Base>(derived_ptr);
37 REQUIRE(derived_ptr->is_derived());
40 TEST_CASE(
"dynamic_pointer_cast to derived class",
"[shared_ptr][cast]") {
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());
47 base_ptr = throwing::static_pointer_cast<Base>(derived_ptr);
50 auto downcast_ptr = throwing::dynamic_pointer_cast<Derived>(base_ptr);
51 REQUIRE(downcast_ptr);
52 REQUIRE(downcast_ptr->is_derived());
55 TEST_CASE(
"const_pointer_cast",
"[shared_ptr][cast]") {
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());
61 TEST_CASE(
"reinterpret_pointer_cast",
"[shared_ptr][cast]") {
62 auto p = throwing::make_shared<Reintepretable>();
64 auto reinterpreted = throwing::reinterpret_pointer_cast<
int>(p);
65 REQUIRE(reinterpreted);
66 REQUIRE(p.use_count() == 2);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")