8 #include <throwing/unique_ptr.hpp> 12 void operator()(
int *) {}
16 TEST_CASE(
"comparison operators between valid throwing::unique_ptr",
17 "[unique_ptr][comparison]") {
20 auto t_ptr1 = throwing::unique_ptr<
int>(ptr1);
21 auto t_ptr1_1 = throwing::unique_ptr<
int, NullDeleter>(ptr1);
22 auto t_ptr2 = throwing::unique_ptr<
int>(ptr2);
24 REQUIRE_FALSE(t_ptr1 == t_ptr2);
25 REQUIRE(t_ptr1 == t_ptr1);
26 REQUIRE(t_ptr1 == t_ptr1_1);
28 REQUIRE(t_ptr1 != t_ptr2);
29 REQUIRE(t_ptr1_1 != t_ptr2);
30 REQUIRE_FALSE(t_ptr1 != t_ptr1);
31 REQUIRE_FALSE(t_ptr1 != t_ptr1_1);
33 REQUIRE((t_ptr1 < t_ptr2) == (ptr1 < ptr2));
34 REQUIRE((t_ptr1_1 < t_ptr2) == (ptr1 < ptr2));
35 REQUIRE_FALSE(t_ptr1 < t_ptr1);
36 REQUIRE_FALSE(t_ptr1 < t_ptr1_1);
38 REQUIRE((t_ptr1 > t_ptr2) == (ptr1 > ptr2));
39 REQUIRE((t_ptr1_1 > t_ptr2) == (ptr1 > ptr2));
40 REQUIRE_FALSE(t_ptr1 > t_ptr1);
41 REQUIRE_FALSE(t_ptr1 > t_ptr1_1);
43 REQUIRE((t_ptr1 <= t_ptr2) == (ptr1 <= ptr2));
44 REQUIRE((t_ptr1_1 <= t_ptr2) == (ptr1 <= ptr2));
45 REQUIRE((t_ptr1 <= t_ptr1) == (ptr1 <= ptr1));
46 REQUIRE((t_ptr1 <= t_ptr1_1) == (ptr1 <= ptr1));
48 REQUIRE((t_ptr1 >= t_ptr2) == (ptr1 >= ptr2));
49 REQUIRE((t_ptr1_1 >= t_ptr2) == (ptr1 >= ptr2));
50 REQUIRE((t_ptr1 >= t_ptr1) == (ptr1 >= ptr1));
51 REQUIRE((t_ptr1 >= t_ptr1_1) == (ptr1 >= ptr1));
54 TEST_CASE(
"comparison operators between valid throwing::unique_ptr and " 56 "[unique_ptr][comparison]") {
59 auto t_ptr1 = std::unique_ptr<
int>(ptr1);
60 auto t_ptr1_1 = std::unique_ptr<
int, NullDeleter>(ptr1);
61 auto t_ptr2 = throwing::unique_ptr<
int>(ptr2);
63 REQUIRE_FALSE(t_ptr1 == t_ptr2);
64 REQUIRE(t_ptr1 == t_ptr1);
65 REQUIRE(t_ptr1 == t_ptr1_1);
67 REQUIRE(t_ptr1 != t_ptr2);
68 REQUIRE(t_ptr1_1 != t_ptr2);
69 REQUIRE_FALSE(t_ptr1 != t_ptr1);
70 REQUIRE_FALSE(t_ptr1 != t_ptr1_1);
72 REQUIRE((t_ptr1 < t_ptr2) == (ptr1 < ptr2));
73 REQUIRE((t_ptr1_1 < t_ptr2) == (ptr1 < ptr2));
74 REQUIRE_FALSE(t_ptr1 < t_ptr1);
75 REQUIRE_FALSE(t_ptr1 < t_ptr1_1);
77 REQUIRE((t_ptr1 > t_ptr2) == (ptr1 > ptr2));
78 REQUIRE((t_ptr1_1 > t_ptr2) == (ptr1 > ptr2));
79 REQUIRE_FALSE(t_ptr1 > t_ptr1);
80 REQUIRE_FALSE(t_ptr1 > t_ptr1_1);
82 REQUIRE((t_ptr1 <= t_ptr2) == (ptr1 <= ptr2));
83 REQUIRE((t_ptr1_1 <= t_ptr2) == (ptr1 <= ptr2));
84 REQUIRE((t_ptr1 <= t_ptr1) == (ptr1 <= ptr1));
85 REQUIRE((t_ptr1 <= t_ptr1_1) == (ptr1 <= ptr1));
87 REQUIRE((t_ptr1 >= t_ptr2) == (ptr1 >= ptr2));
88 REQUIRE((t_ptr1_1 >= t_ptr2) == (ptr1 >= ptr2));
89 REQUIRE((t_ptr1 >= t_ptr1) == (ptr1 >= ptr1));
90 REQUIRE((t_ptr1 >= t_ptr1_1) == (ptr1 >= ptr1));
93 TEST_CASE(
"comparison operators between valid throwing::unique_ptr and " 94 "std::unique_ptr (other way)",
95 "[unique_ptr][comparison]") {
98 auto t_ptr1 = throwing::unique_ptr<
int>(ptr1);
99 auto t_ptr1_1 = throwing::unique_ptr<
int, NullDeleter>(ptr1);
100 auto t_ptr2 = std::unique_ptr<
int>(ptr2);
102 REQUIRE_FALSE(t_ptr1 == t_ptr2);
103 REQUIRE(t_ptr1 == t_ptr1);
104 REQUIRE(t_ptr1 == t_ptr1_1);
106 REQUIRE(t_ptr1 != t_ptr2);
107 REQUIRE(t_ptr1_1 != t_ptr2);
108 REQUIRE_FALSE(t_ptr1 != t_ptr1);
109 REQUIRE_FALSE(t_ptr1 != t_ptr1_1);
111 REQUIRE((t_ptr1 < t_ptr2) == (ptr1 < ptr2));
112 REQUIRE((t_ptr1_1 < t_ptr2) == (ptr1 < ptr2));
113 REQUIRE_FALSE(t_ptr1 < t_ptr1);
114 REQUIRE_FALSE(t_ptr1 < t_ptr1_1);
116 REQUIRE((t_ptr1 > t_ptr2) == (ptr1 > ptr2));
117 REQUIRE((t_ptr1_1 > t_ptr2) == (ptr1 > ptr2));
118 REQUIRE_FALSE(t_ptr1 > t_ptr1);
119 REQUIRE_FALSE(t_ptr1 > t_ptr1_1);
121 REQUIRE((t_ptr1 <= t_ptr2) == (ptr1 <= ptr2));
122 REQUIRE((t_ptr1_1 <= t_ptr2) == (ptr1 <= ptr2));
123 REQUIRE((t_ptr1 <= t_ptr1) == (ptr1 <= ptr1));
124 REQUIRE((t_ptr1 <= t_ptr1_1) == (ptr1 <= ptr1));
126 REQUIRE((t_ptr1 >= t_ptr2) == (ptr1 >= ptr2));
127 REQUIRE((t_ptr1_1 >= t_ptr2) == (ptr1 >= ptr2));
128 REQUIRE((t_ptr1 >= t_ptr1) == (ptr1 >= ptr1));
129 REQUIRE((t_ptr1 >= t_ptr1_1) == (ptr1 >= ptr1));
132 TEST_CASE(
"comparison operators with null throwing::unique_ptr",
133 "[unique_ptr][comparison]") {
135 auto t_ptr = throwing::unique_ptr<
int>(ptr);
136 auto empty_t_ptr = throwing::unique_ptr<
int>();
138 REQUIRE(empty_t_ptr ==
nullptr);
139 REQUIRE_FALSE(t_ptr ==
nullptr);
140 REQUIRE(
nullptr == empty_t_ptr);
141 REQUIRE_FALSE(
nullptr == t_ptr);
143 REQUIRE_FALSE(empty_t_ptr !=
nullptr);
144 REQUIRE(t_ptr !=
nullptr);
145 REQUIRE_FALSE(
nullptr != empty_t_ptr);
146 REQUIRE(
nullptr != t_ptr);
148 REQUIRE((t_ptr <
nullptr) == std::less<
int *>()(ptr,
nullptr));
149 REQUIRE((empty_t_ptr <
nullptr) == std::less<
int *>()(
nullptr,
nullptr));
150 REQUIRE((
nullptr < t_ptr) == std::less<
int *>()(
nullptr, ptr));
151 REQUIRE((
nullptr < empty_t_ptr) == std::less<
int *>()(
nullptr,
nullptr));
153 REQUIRE((t_ptr >
nullptr) == std::less<
int *>()(
nullptr, ptr));
154 REQUIRE((empty_t_ptr >
nullptr) == std::less<
int *>()(
nullptr,
nullptr));
155 REQUIRE((
nullptr > t_ptr) == std::less<
int *>()(ptr,
nullptr));
156 REQUIRE((
nullptr > empty_t_ptr) == std::less<
int *>()(
nullptr,
nullptr));
158 REQUIRE((t_ptr <=
nullptr) == !std::less<
int *>()(
nullptr, ptr));
159 REQUIRE((empty_t_ptr <=
nullptr) == !std::less<
int *>()(
nullptr,
nullptr));
160 REQUIRE((
nullptr <= t_ptr) == !std::less<
int *>()(ptr,
nullptr));
161 REQUIRE((
nullptr <= empty_t_ptr) == !std::less<
int *>()(
nullptr,
nullptr));
163 REQUIRE((t_ptr >=
nullptr) == !std::less<
int *>()(ptr,
nullptr));
164 REQUIRE((empty_t_ptr >=
nullptr) == !std::less<
int *>()(
nullptr,
nullptr));
165 REQUIRE((
nullptr >= t_ptr) == !std::less<
int *>()(
nullptr, ptr));
166 REQUIRE((
nullptr >= empty_t_ptr) == !std::less<
int *>()(
nullptr,
nullptr));
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")