throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_make_unique.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/unique_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(42), n2(84) {}
15 };
16 } // namespace
17 
18 TEST_CASE("make_unique struct with arguments", "[unique_ptr][make_unique]") {
19  auto ptr = throwing::make_unique<Foo>(1, 2);
20  REQUIRE(ptr->n1 == 1);
21  REQUIRE(ptr->n2 == 2);
22 }
23 
24 TEST_CASE("make_unique struct with no arguments", "[unique_ptr][make_unique]") {
25  auto ptr = throwing::make_unique<Foo>();
26  REQUIRE(ptr->n1 == 42);
27  REQUIRE(ptr->n2 == 84);
28 }
29 
30 TEST_CASE("make_unique base type with argument", "[unique_ptr][make_unique]") {
31  auto ptr = throwing::make_unique<int>(42);
32  REQUIRE(*ptr == 42);
33 }
34 
35 TEST_CASE("make_unique base type no arguments", "[unique_ptr][make_unique]") {
36  auto ptr = throwing::make_unique<int>();
37  REQUIRE(ptr);
38 }
39 
40 TEST_CASE("make_unique array of struct", "[unique_ptr][make_unique][array]") {
41  auto ptr = throwing::make_unique<Foo[]>(10);
42  REQUIRE(ptr[0].n1 == 42);
43  REQUIRE(ptr[0].n2 == 84);
44  REQUIRE(ptr[9].n1 == 42);
45  REQUIRE(ptr[9].n2 == 84);
46 }
47 
48 TEST_CASE("make_unique array of base type",
49  "[unique_ptr][make_unique][array]") {
50  auto ptr = throwing::make_unique<int[]>(10);
51  REQUIRE(ptr);
52 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")