7 #include <throwing/unique_ptr.hpp> 11 Deleter() : called(
false) {}
12 void operator()(
int *p) {
21 "[unique_ptr][release]") {
23 throwing::unique_ptr<
int, Deleter> uptr(p);
24 REQUIRE(uptr.get() == p);
25 REQUIRE(uptr.release() == p);
26 REQUIRE(uptr.get() ==
nullptr);
28 REQUIRE(!uptr.get_deleter().called);
31 TEST_CASE(
"unique_ptr to array release",
32 "[unique_ptr][release]") {
33 int * p =
new int[10];
34 throwing::unique_ptr<
int[], Deleter> uptr(p);
35 REQUIRE(uptr.get() == p);
36 REQUIRE(uptr.release() == p);
37 REQUIRE(uptr.get() ==
nullptr);
39 REQUIRE(!uptr.get_deleter().called);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")