7 #include <throwing/unique_ptr.hpp> 11 Deleter() : called(
false) {}
12 void operator()(
int *p) {
19 ArrayDeleter() : called(
false) {}
20 void operator()(
int *p) {
29 "[unique_ptr][reset]") {
30 throwing::unique_ptr<
int, Deleter> uptr(
new int);
32 REQUIRE(!uptr.get_deleter().called);
35 REQUIRE(uptr.get_deleter().called);
38 TEST_CASE(
"unique_ptr to single object reset with nullptr",
39 "[unique_ptr][reset][nullptr]") {
40 throwing::unique_ptr<
int, Deleter> uptr(
new int);
42 REQUIRE(!uptr.get_deleter().called);
45 REQUIRE(uptr.get_deleter().called);
48 TEST_CASE(
"unique_ptr to array reset",
49 "[unique_ptr][array][reset]") {
50 throwing::unique_ptr<
int[], ArrayDeleter> uptr(
new int[10]);
52 REQUIRE(!uptr.get_deleter().called);
53 uptr.reset(
new int[10]);
55 REQUIRE(uptr.get_deleter().called);
58 TEST_CASE(
"unique_ptr to array reset with nullptr",
59 "[unique_ptr][reset][nullptr]") {
60 throwing::unique_ptr<
int[], ArrayDeleter> uptr(
new int[10]);
62 REQUIRE(!uptr.get_deleter().called);
65 REQUIRE(uptr.get_deleter().called);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")