Go to the source code of this file.
|
| TEST_CASE ("unique_ptr swap swaps pointers", "[unique_ptr][swap]") |
|
| TEST_CASE ("unique_ptr swap null pointers", "[unique_ptr][swap][nullptr]") |
|
| TEST_CASE ("unique_ptr to array swap swaps pointers", "[unique_ptr][array][swap]") |
|
| TEST_CASE ("unique_ptr to array swap null pointers", "[unique_ptr][array][swap][nullptr]") |
|
◆ TEST_CASE() [1/4]
TEST_CASE |
( |
"unique_ptr swap swaps pointers" |
, |
|
|
"" |
[unique_ptr][swap] |
|
) |
| |
Definition at line 9 of file unique_ptr_swap.cpp.
14 REQUIRE(t_ptr1.get() == ptr1);
15 REQUIRE(t_ptr2.get() == ptr2);
17 REQUIRE(t_ptr1.get() == ptr2);
18 REQUIRE(t_ptr2.get() == ptr1);
20 REQUIRE(t_ptr1.get() == ptr1);
21 REQUIRE(t_ptr2.get() == ptr2);
unique_ptr that manages a single object
void swap(throwing::shared_ptr< T > &lhs, throwing::shared_ptr< T > &rhs) TSP_NOEXCEPT
Specializes the std::swap algorithm for throwing::shared_ptr.
◆ TEST_CASE() [2/4]
TEST_CASE |
( |
"unique_ptr swap null pointers" |
, |
|
|
"" |
[unique_ptr][swap][nullptr] |
|
) |
| |
Definition at line 24 of file unique_ptr_swap.cpp.
27 REQUIRE(t_ptr1.get() !=
nullptr);
28 REQUIRE(t_ptr2.
get() ==
nullptr);
30 REQUIRE(t_ptr1.get() ==
nullptr);
31 REQUIRE(t_ptr2.
get() !=
nullptr);
33 REQUIRE(t_ptr1.get() !=
nullptr);
34 REQUIRE(t_ptr2.
get() ==
nullptr);
void swap(unique_ptr &other) TSP_NOEXCEPT
Swaps the managed objects and associated deleters of *this and another unique_ptr object other...
unique_ptr that manages a single object
pointer get() const TSP_NOEXCEPT
Returns a pointer to the managed object or nullptr if no object is owned.
void swap(throwing::shared_ptr< T > &lhs, throwing::shared_ptr< T > &rhs) TSP_NOEXCEPT
Specializes the std::swap algorithm for throwing::shared_ptr.
◆ TEST_CASE() [3/4]
TEST_CASE |
( |
"unique_ptr to array swap swaps pointers" |
, |
|
|
"" |
[unique_ptr][array][swap] |
|
) |
| |
Definition at line 37 of file unique_ptr_swap.cpp.
43 REQUIRE(t_ptr1.get() == ptr1);
44 REQUIRE(t_ptr2.get() == ptr2);
46 REQUIRE(t_ptr1.get() == ptr2);
47 REQUIRE(t_ptr2.get() == ptr1);
49 REQUIRE(t_ptr1.get() == ptr1);
50 REQUIRE(t_ptr2.get() == ptr2);
unique_ptr that manages a single object
void swap(throwing::shared_ptr< T > &lhs, throwing::shared_ptr< T > &rhs) TSP_NOEXCEPT
Specializes the std::swap algorithm for throwing::shared_ptr.
◆ TEST_CASE() [4/4]
TEST_CASE |
( |
"unique_ptr to array swap null pointers" |
, |
|
|
"" |
[unique_ptr][array][swap][nullptr] |
|
) |
| |
Definition at line 53 of file unique_ptr_swap.cpp.
57 REQUIRE(t_ptr1.get() !=
nullptr);
58 REQUIRE(t_ptr2.
get() ==
nullptr);
60 REQUIRE(t_ptr1.get() ==
nullptr);
61 REQUIRE(t_ptr2.
get() !=
nullptr);
63 REQUIRE(t_ptr1.get() !=
nullptr);
64 REQUIRE(t_ptr2.
get() ==
nullptr);
void swap(unique_ptr &other) TSP_NOEXCEPT
Swaps the managed objects and associated deleters of *this and another unique_ptr object other...
unique_ptr that manages a single object
pointer get() const TSP_NOEXCEPT
Returns a pointer to the managed object or nullptr if no object is owned.
void swap(throwing::shared_ptr< T > &lhs, throwing::shared_ptr< T > &rhs) TSP_NOEXCEPT
Specializes the std::swap algorithm for throwing::shared_ptr.