7 #include <throwing/unique_ptr.hpp> 11 int foo()
const {
return 42; }
15 TEST_CASE(
"unique_ptr to array: get on null returns nullptr",
16 "[unique_ptr][array][nullptr][access]") {
17 throwing::unique_ptr<
int[]> nothing;
18 REQUIRE(nothing.get() ==
nullptr);
21 throwing::unique_ptr<
int[]> nothing_nullptr(
nullptr);
22 REQUIRE(nothing.get() ==
nullptr);
26 TEST_CASE(
"unique_ptr to array: get returns first element",
27 "[unique_ptr][array][access]") {
28 int *ptr =
new int[10];
29 throwing::unique_ptr<
int[]> t_ptr(ptr);
30 REQUIRE(t_ptr.get() == ptr);
33 TEST_CASE(
"unique_ptr to array: dereferencing nullptr throws",
34 "[unique_ptr][array][access][nullptr]") {
35 throwing::unique_ptr<Foo[]> nothing;
36 REQUIRE_THROWS_AS(nothing[0], throwing::base_null_ptr_exception);
37 REQUIRE_THROWS_AS(nothing[0], throwing::null_ptr_exception<Foo>);
40 TEST_CASE(
"unique_ptr to array: [0] returns first element",
41 "[unique_ptr][array][access]") {
42 int *ptr =
new int[10];
43 throwing::unique_ptr<
int[]> t_ptr(ptr);
44 REQUIRE(&t_ptr[0] == ptr);
47 TEST_CASE(
"unique_ptr to array: operator bool",
"[unique_ptr][array][bool]") {
48 throwing::unique_ptr<
int[]> nothing;
51 throwing::unique_ptr<
int[]> something(
new int[10]);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")