7 #include <throwing/unique_ptr.hpp> 14 int dummy() {
return dummy_a; }
18 DeleterA() : called(
false) {}
19 void operator()(A *p) {
27 TEST_CASE(
"move assignment from throwing::unique_ptr to array",
28 "[unique_ptr][assignment][array]") {
30 throwing::unique_ptr<A[]> t_ptr1(ptr1);
31 throwing::unique_ptr<A[]> t_ptr2;
32 t_ptr2 = std::move(t_ptr1);
33 REQUIRE(t_ptr2.get() == ptr1);
34 REQUIRE(t_ptr1.get() ==
nullptr);
37 TEST_CASE(
"move assignment from std::unique_ptr to array",
38 "[unique_ptr][assignment][array]") {
40 std::unique_ptr<A[]> t_ptr1(ptr1);
41 throwing::unique_ptr<A[]> t_ptr2;
42 t_ptr2 = std::move(t_ptr1);
43 REQUIRE(t_ptr2.get() == ptr1);
44 REQUIRE(t_ptr1.get() ==
nullptr);
47 TEST_CASE(
"assignment from nullptr to array",
48 "[unique_ptr][assignment][nullptr][array]") {
49 throwing::unique_ptr<A[], DeleterA> t_ptr(
new A[10]);
52 REQUIRE_FALSE(t_ptr.get());
53 REQUIRE(t_ptr.get_deleter().called);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")