7 #include <throwing/shared_ptr.hpp> 11 int foo()
const {
return 42; }
15 TEST_CASE(
"shared_ptr get returns correctly with nullptr",
16 "[shared_ptr][access][nullptr]") {
17 throwing::shared_ptr<
int> nothing;
18 REQUIRE(nothing.get() ==
nullptr);
20 throwing::shared_ptr<
int> nothing_nullptr(
nullptr);
21 REQUIRE(nothing.get() ==
nullptr);
23 throwing::shared_ptr<
int> nothing_null(NULL);
24 REQUIRE(nothing.get() ==
nullptr);
27 TEST_CASE(
"shared_ptr get returns correct address",
"[shared_ptr][access]") {
29 throwing::shared_ptr<
int> t_ptr(ptr);
30 REQUIRE(t_ptr.get() == ptr);
33 TEST_CASE(
"shared_ptr dereference via * throws on nullptr",
34 "[shared_ptr][dereference][nullptr]") {
35 throwing::shared_ptr<
int> nothing;
36 REQUIRE_THROWS_AS((*nothing)++, throwing::base_null_ptr_exception);
37 REQUIRE_THROWS_AS((*nothing)++, throwing::null_ptr_exception<
int>);
40 TEST_CASE(
"shared_ptr dereference via -> throws on nullptr",
41 "[shared_ptr][dereference][nullptr]") {
42 throwing::shared_ptr<Foo> nothing;
43 REQUIRE_THROWS_AS(nothing->foo(), throwing::base_null_ptr_exception);
44 REQUIRE_THROWS_AS(nothing->foo(), throwing::null_ptr_exception<Foo>);
47 TEST_CASE(
"type specific shared_ptr exceptions are caught by base exception",
48 "[shared_ptr][exception]") {
49 throwing::shared_ptr<
int> nothing;
52 }
catch (
const throwing::null_ptr_exception<
float> &) {
54 }
catch (
const throwing::base_null_ptr_exception &e) {
55 REQUIRE(std::string(e.what()) ==
"Dereference of nullptr");
60 "type specific shared_ptr exceptions are caught by using correct type",
61 "[shared_ptr][exception]") {
62 throwing::shared_ptr<
int> nothing;
65 }
catch (
const throwing::null_ptr_exception<
float> &) {
67 }
catch (
const throwing::null_ptr_exception<
int> &) {
71 TEST_CASE(
"shared_ptr exceptions have non-empty what()",
72 "[shared_ptr][exception]") {
73 throwing::shared_ptr<
int> nothing;
76 }
catch (
const throwing::base_null_ptr_exception &e) {
77 std::string what = e.what_type();
78 REQUIRE_FALSE(what.empty());
82 TEST_CASE(
"shared_ptr use count works",
"[shared_ptr][use count]") {
84 throwing::shared_ptr<Foo> ptr;
85 REQUIRE(ptr.use_count() == 0l);
87 REQUIRE(ptr.use_count() == 1l);
89 REQUIRE(ptr.use_count() == 2l);
90 REQUIRE(ptr2.use_count() == 2l);
92 REQUIRE(ptr.use_count() == 0l);
93 REQUIRE(ptr2.use_count() == 1l);
95 REQUIRE(ptr.use_count() == 0l);
96 REQUIRE(ptr2.use_count() == 0l);
99 TEST_CASE(
"operator bool works",
"[shared_ptr]") {
101 throwing::shared_ptr<Foo> ptr;
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")