throwing_ptr
Smart pointers that throw on dereference if null
shared_ptr_make_shared.cpp
Go to the documentation of this file.
1 // Copyright Claudio Bantaloukas 2017-2018.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <catch.hpp>
7 #include <throwing/shared_ptr.hpp>
8 
9 namespace {
10 struct Foo {
11  int n1;
12  int n2;
13  Foo(int a, int b) : n1(a), n2(b) {}
14  Foo() : n1(0), n2(0) {}
15 };
16 } // namespace
17 
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);
22 }
23 
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);
28 }
29 
30 TEST_CASE("make_shared base type with argument", "[shared_ptr][make_shared]") {
31  auto ptr = throwing::make_shared<int>(42);
32  REQUIRE(*ptr == 42);
33 }
34 
35 TEST_CASE("make_shared base type no arguments", "[shared_ptr][make_shared]") {
36  auto ptr = throwing::make_shared<int>();
37  REQUIRE(ptr);
38 }
39 
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);
45 }
46 
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);
53 }
54 
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);
59  REQUIRE(*ptr == 42);
60 }
61 
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);
66  REQUIRE(ptr);
67 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")