Go to the source code of this file.
|
| TEST_CASE ("shared_ptr swap swaps pointers", "[shared_ptr][swap]") |
|
| TEST_CASE ("shared_ptr swap null pointers", "[shared_ptr][swap][nullptr]") |
|
◆ TEST_CASE() [1/2]
TEST_CASE |
( |
"shared_ptr swap swaps pointers" |
, |
|
|
"" |
[shared_ptr][swap] |
|
) |
| |
Definition at line 9 of file shared_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);
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
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/2]
TEST_CASE |
( |
"shared_ptr swap null pointers" |
, |
|
|
"" |
[shared_ptr][swap][nullptr] |
|
) |
| |
Definition at line 24 of file shared_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);
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
element_type * get() const TSP_NOEXCEPT
Returns the stored pointer.
void swap(shared_ptr &r) TSP_NOEXCEPT
Exchanges the contents of *this and r.
void swap(throwing::shared_ptr< T > &lhs, throwing::shared_ptr< T > &rhs) TSP_NOEXCEPT
Specializes the std::swap algorithm for throwing::shared_ptr.