7 #include <throwing/unique_ptr.hpp> 9 TEST_CASE(
"unique_ptr swap swaps pointers",
"[unique_ptr][swap]") {
11 throwing::unique_ptr<
int> t_ptr1(ptr1);
13 throwing::unique_ptr<
int> t_ptr2(ptr2);
14 REQUIRE(t_ptr1.get() == ptr1);
15 REQUIRE(t_ptr2.get() == ptr2);
17 REQUIRE(t_ptr1.get() == ptr2);
18 REQUIRE(t_ptr2.get() == ptr1);
19 std::swap(t_ptr1, t_ptr2);
20 REQUIRE(t_ptr1.get() == ptr1);
21 REQUIRE(t_ptr2.get() == ptr2);
24 TEST_CASE(
"unique_ptr swap null pointers",
"[unique_ptr][swap][nullptr]") {
25 throwing::unique_ptr<
int> t_ptr1(
new int);
26 throwing::unique_ptr<
int> t_ptr2;
27 REQUIRE(t_ptr1.get() !=
nullptr);
28 REQUIRE(t_ptr2.get() ==
nullptr);
30 REQUIRE(t_ptr1.get() ==
nullptr);
31 REQUIRE(t_ptr2.get() !=
nullptr);
32 std::swap(t_ptr1, t_ptr2);
33 REQUIRE(t_ptr1.get() !=
nullptr);
34 REQUIRE(t_ptr2.get() ==
nullptr);
37 TEST_CASE(
"unique_ptr to array swap swaps pointers",
38 "[unique_ptr][array][swap]") {
40 throwing::unique_ptr<
int> t_ptr1(ptr1);
42 throwing::unique_ptr<
int> t_ptr2(ptr2);
43 REQUIRE(t_ptr1.get() == ptr1);
44 REQUIRE(t_ptr2.get() == ptr2);
46 REQUIRE(t_ptr1.get() == ptr2);
47 REQUIRE(t_ptr2.get() == ptr1);
48 std::swap(t_ptr1, t_ptr2);
49 REQUIRE(t_ptr1.get() == ptr1);
50 REQUIRE(t_ptr2.get() == ptr2);
53 TEST_CASE(
"unique_ptr to array swap null pointers",
54 "[unique_ptr][array][swap][nullptr]") {
55 throwing::unique_ptr<
int[]> t_ptr1(
new int[10]);
56 throwing::unique_ptr<
int[]> t_ptr2;
57 REQUIRE(t_ptr1.get() !=
nullptr);
58 REQUIRE(t_ptr2.get() ==
nullptr);
60 REQUIRE(t_ptr1.get() ==
nullptr);
61 REQUIRE(t_ptr2.get() !=
nullptr);
62 std::swap(t_ptr1, t_ptr2);
63 REQUIRE(t_ptr1.get() !=
nullptr);
64 REQUIRE(t_ptr2.get() ==
nullptr);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")