7 #include <throwing/shared_ptr.hpp> 11 int foo()
const {
return 42; }
15 TEST_CASE(
"shared_ptr to array from nullptr: get returns nullptr",
16 "[shared_ptr][array][access]") {
17 throwing::shared_ptr<
int[10]> nothing;
18 REQUIRE(nothing.get() ==
nullptr);
20 throwing::shared_ptr<
int[10]> nothing_nullptr(
nullptr);
21 REQUIRE(nothing.get() ==
nullptr);
23 throwing::shared_ptr<
int[10]> nothing_null(NULL);
24 REQUIRE(nothing.get() ==
nullptr);
27 TEST_CASE(
"shared_ptr to array: get returns first element",
28 "[shared_ptr][array][access]") {
29 int *ptr =
new int[10];
30 throwing::shared_ptr<
int[10]> t_ptr(ptr);
31 REQUIRE(t_ptr.get() == ptr);
34 TEST_CASE(
"dereferencing null shared_ptr to array throws",
35 "[shared_ptr][array][access]") {
36 throwing::shared_ptr<Foo[100]> nothing;
37 REQUIRE_THROWS_AS(nothing[0], throwing::base_null_ptr_exception);
38 REQUIRE_THROWS_AS(nothing[0], throwing::null_ptr_exception<Foo[100]>);
41 TEST_CASE(
"shared_ptr to array: [0] returns first element",
42 "[shared_ptr][array][access]") {
43 int *ptr =
new int[10];
44 throwing::shared_ptr<
int[10]> t_ptr(ptr);
45 REQUIRE(&t_ptr[0] == ptr);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")