7 #include <throwing/shared_ptr.hpp> 13 Foo(
int a,
int b) : n1(a), n2(b) {}
14 Foo() : n1(0), n2(0) {}
18 TEST_CASE(
"make_shared struct with arguments",
"[shared_ptr][make_shared]") {
19 auto ptr = throwing::make_shared<Foo>(1, 2);
20 REQUIRE(ptr->n1 == 1);
21 REQUIRE(ptr->n2 == 2);
24 TEST_CASE(
"make_shared struct with no arguments",
"[shared_ptr][make_shared]") {
25 auto ptr = throwing::make_shared<Foo>();
26 REQUIRE(ptr->n1 == 0);
27 REQUIRE(ptr->n2 == 0);
30 TEST_CASE(
"make_shared base type with argument",
"[shared_ptr][make_shared]") {
31 auto ptr = throwing::make_shared<
int>(42);
35 TEST_CASE(
"make_shared base type no arguments",
"[shared_ptr][make_shared]") {
36 auto ptr = throwing::make_shared<
int>();
40 TEST_CASE(
"allocate_shared with arguments",
"[shared_ptr][allocate_shared]") {
41 std::allocator<Foo> allocator;
42 auto ptr = throwing::allocate_shared<Foo>(allocator, 1, 2);
43 REQUIRE(ptr->n1 == 1);
44 REQUIRE(ptr->n2 == 2);
47 TEST_CASE(
"allocate_shared with no arguments",
48 "[shared_ptr][allocate_shared]") {
49 std::allocator<Foo> allocator;
50 auto ptr = throwing::allocate_shared<Foo>(allocator);
51 REQUIRE(ptr->n1 == 0);
52 REQUIRE(ptr->n2 == 0);
55 TEST_CASE(
"allocate_shared base type with arguments",
56 "[shared_ptr][allocate_shared]") {
57 std::allocator<
int> allocator;
58 auto ptr = throwing::allocate_shared<
int>(allocator, 42);
62 TEST_CASE(
"allocate_shared base type with no arguments",
63 "[shared_ptr][allocate_shared]") {
64 std::allocator<
int> allocator;
65 auto ptr = throwing::allocate_shared<
int>(allocator);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")