7 #include <throwing/unique_ptr.hpp> 14 int dummy() {
return dummy_a; }
21 int dummy() {
return dummy_b; }
25 DeleterA() : called(
false) {}
26 void operator()(A *p) {
34 TEST_CASE(
"move assignment from throwing::unique_ptr",
35 "[unique_ptr][assignment]") {
37 throwing::unique_ptr<A> t_ptr1(ptr1);
38 throwing::unique_ptr<A> t_ptr2;
39 t_ptr2 = std::move(t_ptr1);
40 REQUIRE(t_ptr2.get() == ptr1);
41 REQUIRE(t_ptr1.get() ==
nullptr);
44 TEST_CASE(
"move assignment from throwing::unique_ptr to derived class",
45 "[unique_ptr][assignment]") {
47 throwing::unique_ptr<B> t_ptr1(ptr1);
48 throwing::unique_ptr<A> t_ptr2;
49 t_ptr2 = std::move(t_ptr1);
50 REQUIRE(t_ptr2.get() == ptr1);
51 REQUIRE(t_ptr1.get() ==
nullptr);
54 TEST_CASE(
"move assignment from std::unique_ptr to derived class",
55 "[unique_ptr][assignment]") {
57 std::unique_ptr<B> t_ptr1(ptr1);
58 throwing::unique_ptr<A> t_ptr2;
59 t_ptr2 = std::move(t_ptr1);
60 REQUIRE(t_ptr2.get() == ptr1);
61 REQUIRE(t_ptr1.get() ==
nullptr);
64 TEST_CASE(
"assignment from nullptr",
"[unique_ptr][assignment][nullptr]") {
65 throwing::unique_ptr<A, DeleterA> t_ptr(
new A);
68 REQUIRE_FALSE(t_ptr.get());
69 REQUIRE(t_ptr.get_deleter().called);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")